diff --git a/.gitignore b/.gitignore index 1865f26..f1c95c7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,11 @@ formal/ddr3_multiconfig*prf* formal/ecc/ formal/ddr3_singleconfig/ example_demo/nexys_video/build/ +testbench/xsim/xsim* +testbench/xsim/*backup* +testbench/xsim/*.log +testbench/xsim/*.pb +testbench/xsim/*.wdb + +# But do not ignore testbench/xsim/test_*.log +!testbench/xsim/test_*.log diff --git a/example_demo/enclustra_kx2_st1/clk_wiz.v b/example_demo/enclustra_kx2_st1/clk_wiz.v index e9a5ebb..21718a1 100644 --- a/example_demo/enclustra_kx2_st1/clk_wiz.v +++ b/example_demo/enclustra_kx2_st1/clk_wiz.v @@ -6,14 +6,12 @@ module clk_wiz output clk_out1, output clk_out2, output clk_out3, - output clk_out4, input reset, output locked ); wire clk_out1_clk_wiz_0; wire clk_out2_clk_wiz_0; wire clk_out3_clk_wiz_0; - wire clk_out4_clk_wiz_0; wire clkfbout; @@ -22,20 +20,17 @@ module clk_wiz .COMPENSATION ("INTERNAL"), .STARTUP_WAIT ("FALSE"), .DIVCLK_DIVIDE (1), - .CLKFBOUT_MULT (5), // 200 MHz * 5 = 1000 MHz + .CLKFBOUT_MULT (10), // 200 MHz * 10 = 2000 MHz .CLKFBOUT_PHASE (0.000), - .CLKOUT0_DIVIDE (12), // 1000 MHz / 12 = 83.333 MHz + .CLKOUT0_DIVIDE (12), // 2000 MHz / 12 = 166.67 MHz .CLKOUT0_PHASE (0.000), .CLKOUT0_DUTY_CYCLE (0.500), - .CLKOUT1_DIVIDE (3), // 1000 MHz / 3 = 333.333 MHz + .CLKOUT1_DIVIDE (3), // 2000 MHz / 3 = 666.67 MHz .CLKOUT1_PHASE (0.000), .CLKOUT1_DUTY_CYCLE (0.500), - .CLKOUT2_DIVIDE (5), // 1000 MHz / 5 = 200 MHz + .CLKOUT2_DIVIDE (10), // 2000 MHz / 10 = 200 MHz .CLKOUT2_PHASE (0.000), .CLKOUT2_DUTY_CYCLE (0.500), - .CLKOUT3_DIVIDE (3), // 1000 MHz / 3 = 333.333 MHz, 90 phase - .CLKOUT3_PHASE (90.000), - .CLKOUT3_DUTY_CYCLE (0.500), .CLKIN1_PERIOD (5) // 200 MHz input ) plle2_adv_inst @@ -44,7 +39,6 @@ module clk_wiz .CLKOUT0 (clk_out1_clk_wiz_0), .CLKOUT1 (clk_out2_clk_wiz_0), .CLKOUT2 (clk_out3_clk_wiz_0), - .CLKOUT3 (clk_out4_clk_wiz_0), .CLKFBIN (clkfbout), .CLKIN1 (clk_in1), .LOCKED (locked), @@ -59,8 +53,5 @@ module clk_wiz BUFG clkout3_buf (.O (clk_out3), .I (clk_out3_clk_wiz_0)); - BUFG clkout4_buf - (.O (clk_out4), - .I (clk_out4_clk_wiz_0)); endmodule diff --git a/example_demo/enclustra_kx2_st1/ddr3_test.v b/example_demo/enclustra_kx2_st1/ddr3_test.v new file mode 100644 index 0000000..3995bb3 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test.v @@ -0,0 +1,367 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Filename: ddr3_test.v +// Project: Test the UberDDR3 by sending traffic via the Wishbone interface +// +// Purpose: Sends traffic over Wishbone interface of UberDDR3. This has 3 tests: +// - burst write/read +// - random write/read +// - alternating write/read +// Uses MicroBlaze to report via UART the number of read matches, mismatches, and +// total time elapsed. Report summary is sent every second. +// +// Engineer: Angelo C. Jacobo +// +//////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023-2025 Angelo Jacobo +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +//////////////////////////////////////////////////////////////////////////////// + +// `default_nettype none +`timescale 1ps / 1ps + +module ddr3_test #( + parameter WB_ADDR_BITS = 25, + WB_DATA_BITS = 512, + WB_SEL_BITS = WB_DATA_BITS / 8, + AUX_WIDTH = 4, + DATA_MASK = 1, + parameter[0:0] MICRON_SIM = 0 + ) + ( + input wire i_clk, // ddr3 test clock + input wire i_clk100, // microblaze clock + input wire i_rst_n, + // + // Wishbone inputs + output reg o_wb_cyc, //bus cycle active (1 = normal operation, 0 = all ongoing transaction are to be cancelled) + output reg o_wb_stb, //request a transfer + output reg o_wb_we, //write-enable (1 = write, 0 = read) + output reg[WB_ADDR_BITS - 1:0] o_wb_addr, //burst-addressable {row,bank,col} + output reg[WB_DATA_BITS - 1:0] o_wb_data, //write data, for a 4:1 controller data width is 8 times the number of pins on the device + output reg[WB_SEL_BITS - 1:0] o_wb_sel, //byte strobe for write (1 = write the byte) + output reg[AUX_WIDTH - 1:0] o_aux, //for AXI-interface compatibility (given upon strobe) + // + // Wishbone outputs + input wire i_wb_stall, //1 = busy, cannot accept requests + input wire i_wb_ack, //1 = read/write request has completed + input wire i_wb_err, //1 = Error due to ECC double bit error (fixed to 0 if WB_ERROR = 0) + input wire[WB_DATA_BITS - 1:0] i_wb_data, //read data, for a 4:1 controller data width is 8 times the number of pins on the device + input wire[AUX_WIDTH - 1:0] i_aux, //for AXI-interface compatibility (given upon strobe) + // + // Done Calibration pin + input wire i_calib_complete, + // + // UART line + input wire rx, + output wire tx, + // Button for fault-injection + input wire btn, + // + // Debug + output wire timer_pulse, + output wire wrong_data_counter_non_zero + ); + localparam IDLE=0, + BURST_WRITE=1, + BURST_READ=2, + RANDOM_WRITE=3, + RANDOM_READ=4, + ALTERNATE_WRITE_READ=5, + DONE_TEST=6; + localparam SIM_ADDRESS_INCR_LOG2 = WB_ADDR_BITS-2-6; // 2^(WB_ADDR_BITS-2)/64 + localparam HALF_ADDRESS = 13; + localparam SIM_ADDRESS_START = {(WB_ADDR_BITS){1'b1}} - 99; // minus odd number so result is even (similar to default address start of zero) + (* mark_debug = "true" *) reg[3:0] state=IDLE; + reg[3:0] rest_counter=0; + wire[WB_DATA_BITS-1:0] correct_data; + wire[WB_DATA_BITS-1:0] wb_data_randomized; + reg[WB_ADDR_BITS-1:0] write_test_address_counter = 0, read_test_address_counter = 0; + reg[WB_ADDR_BITS-1:0] check_test_address_counter = 0; + reg[$clog2(WB_SEL_BITS)-1:0] write_by_byte_counter = 0; + (* mark_debug = "true" *) reg[63:0] correct_read_data_counter = 0, wrong_read_data_counter = 0; // 64-bit counter for correct and wrong read data, this make sure the counter will not overflow when several day's worth of DDR3 test is done on hardware + (* mark_debug = "true" *) reg[WB_DATA_BITS-1:0] wrong_data, expected_data; + reg[63:0] time_counter = 0; + (* mark_debug = "true" *) reg[31:0] injected_faults_counter = 0; + assign timer_pulse = time_counter[27]; // 1.34 sec + assign wrong_data_counter_non_zero = wrong_read_data_counter != 0; // pulse when there is wrong data + + always @(posedge i_clk, negedge i_rst_n) begin + if(!i_rst_n) begin + state <= IDLE; + rest_counter <= 0; + o_wb_cyc <= 0; + o_wb_stb <= 0; + o_wb_we <= 0; + o_wb_addr <= 0; + o_wb_data <= 0; + o_wb_sel <= 0; + o_aux <= 0; + write_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + rest_counter <= 0; + read_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + write_by_byte_counter <= 0; + injected_faults_counter <= 0; + end + else begin + case(state) + IDLE: if(i_calib_complete) begin // wait until DDR3 is done calibrating + rest_counter = rest_counter + 1; + if(rest_counter == 4'hf) begin // rest for 16 cycles before starting test + state <= BURST_WRITE; + o_wb_cyc <= 1'b1; + end + end + else begin + o_wb_cyc <= 0; + o_wb_stb <= 0; + o_wb_we <= 0; + o_wb_addr <= 0; + o_wb_data <= 0; + o_wb_sel <= 0; + o_aux <= 0; + write_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + rest_counter <= 0; + read_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + write_by_byte_counter <= 0; + injected_faults_counter <= 0; + end + + BURST_WRITE: if(!i_wb_stall) begin // Test 1: Burst write (per byte write to test datamask feature), then burst read + o_wb_stb <= 1'b1; + o_aux <= 2; // write + o_wb_we <= 1; + if(DATA_MASK) begin // If datamasking is available, test datamask by writing 8 bytes at a time + o_wb_sel <= {{WB_SEL_BITS-8{1'b0}}, 8'hff} << write_by_byte_counter; // write_by_byte_counter increments by 8 from 0 to (WB_SEL_BITS-8) + o_wb_addr <= write_test_address_counter; + o_wb_data <= {WB_SEL_BITS{8'haa}}; // fill data initially by 8'haa + o_wb_data[8*write_by_byte_counter +: 64] <= btn_pulse? {64{1'b0}} : wb_data_randomized[8*write_by_byte_counter +: 64]; // place the real data at the datamasked bytes + injected_faults_counter <= btn_pulse? injected_faults_counter + 1 : injected_faults_counter; + if(write_by_byte_counter == (WB_SEL_BITS-8)) begin // once every 64bytes of data is written, go to next address + write_test_address_counter <= write_test_address_counter + 1; + /* verilator lint_off WIDTHEXPAND */ + if( write_test_address_counter == {(WB_ADDR_BITS){1'b1}} ) begin // wait until all address space is writtten + /* verilator lint_on WIDTHEXPAND */ + write_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + state <= BURST_READ; + end + end + write_by_byte_counter <= write_by_byte_counter + 8; + end + else begin // Burst write to all bytes (all datamask on) + o_wb_sel <= {WB_SEL_BITS{1'b1}}; + o_wb_addr <= write_test_address_counter; + o_wb_data <= btn_pulse? {WB_DATA_BITS{1'b0}} : wb_data_randomized; + injected_faults_counter <= btn_pulse? injected_faults_counter + 1 : injected_faults_counter; + write_test_address_counter <= write_test_address_counter + 1; + /* verilator lint_off WIDTHEXPAND */ + if( write_test_address_counter == {WB_ADDR_BITS{1'b1}} ) begin // wait until all address space is writtten + /* verilator lint_on WIDTHEXPAND */ + write_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + state <= BURST_READ; + end + end + end + + BURST_READ: if(!i_wb_stall) begin + o_wb_stb <= 1'b1; + o_aux <= 3; // read + o_wb_we <= 0; + o_wb_addr <= read_test_address_counter; + read_test_address_counter <= read_test_address_counter + 1; + /* verilator lint_off WIDTHEXPAND */ + if( read_test_address_counter == {(WB_ADDR_BITS){1'b1}} ) begin // wait until all address space is read + /* verilator lint_on WIDTHEXPAND */ + read_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + state <= RANDOM_WRITE; + end + end + + RANDOM_WRITE: if(!i_wb_stall) begin // Test 2: Random write (increments row address to force precharge-act-r/w) then random read + o_wb_stb <= 1'b1; + o_aux <= 2; // write + o_wb_sel <= {WB_SEL_BITS{1'b1}}; + o_wb_we <= 1; + // swap the halves of address counter, since address mapping is {row,bank,col} then every increment of address counter will now increment the {row, bank} preventing burst operation and forcing precharge-activate before write/read + o_wb_addr[WB_ADDR_BITS-1:HALF_ADDRESS] <= write_test_address_counter[HALF_ADDRESS-1:0]; // [25:13] <= [12:0] + o_wb_addr[HALF_ADDRESS-1:0] <= write_test_address_counter[WB_ADDR_BITS-1:HALF_ADDRESS]; // [12:0] <= [25:13] + o_wb_data <= btn_pulse? {WB_DATA_BITS{1'b0}} : wb_data_randomized; + injected_faults_counter <= btn_pulse? injected_faults_counter + 1 : injected_faults_counter; + write_test_address_counter <= write_test_address_counter + 1; + /* verilator lint_off WIDTHEXPAND */ + if( write_test_address_counter == {(WB_ADDR_BITS){1'b1}} ) begin // wait until all address space is writtten + /* verilator lint_on WIDTHEXPAND */ + write_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + state <= RANDOM_READ; + end + end + + RANDOM_READ: if(!i_wb_stall) begin + o_wb_stb <= 1'b1; + o_aux <= 3; // read + o_wb_we <= 0; + // swap the halves of address counter, since address mapping is {row,bank,col} then every increment of address counter will now increment the {row, bank} preventing burst operation and forcing precharge-activate before write/read + o_wb_addr[WB_ADDR_BITS-1:HALF_ADDRESS] <= read_test_address_counter[HALF_ADDRESS-1:0]; // [25:13] <= [12:0] + o_wb_addr[HALF_ADDRESS-1:0] <= read_test_address_counter[WB_ADDR_BITS-1:HALF_ADDRESS]; // [12:0] <= [25:13] + read_test_address_counter <= read_test_address_counter + 1; + /* verilator lint_off WIDTHEXPAND */ + if( read_test_address_counter == {(WB_ADDR_BITS){1'b1}} ) begin // wait until all address space is read + /* verilator lint_on WIDTHEXPAND */ + read_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + state <= ALTERNATE_WRITE_READ; + end + end + + ALTERNATE_WRITE_READ: if(!i_wb_stall) begin + o_wb_stb <= 1'b1; + o_aux <= 2 + (o_wb_we? 1:0); //2 (write), 3 (read) + o_wb_sel <= {WB_SEL_BITS{1'b1}}; + o_wb_we <= !o_wb_we; // alternating write-read + o_wb_addr <= write_test_address_counter; + o_wb_data <= btn_pulse? {WB_DATA_BITS{1'b0}} : wb_data_randomized; + injected_faults_counter <= btn_pulse? injected_faults_counter + 1 : injected_faults_counter; + // if current operation is write, then dont increment address since we wil read the same address next + if(o_wb_we) begin // current operation is read thus increment address + write_test_address_counter <= write_test_address_counter + 1; + end + /* verilator lint_off WIDTHEXPAND */ + if( (o_wb_addr == {(WB_ADDR_BITS){1'b1}}) && !o_wb_we ) begin // only + /* verilator lint_on WIDTHEXPAND */ + write_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + state <= DONE_TEST; + rest_counter <= 0; + end + end + DONE_TEST: begin + o_wb_stb <= 0; + rest_counter <= rest_counter + 1; + if(rest_counter == 4'hf) begin // rest for 16 cycles before repeating test + state <= BURST_WRITE; + end + end + endcase + end + end + // Uses different operations (XOR, addition, subtraction, bit rotation) to generate different values per byte. + assign wb_data_randomized = { + {(WB_SEL_BITS/8){write_test_address_counter[0 +: 8] ^ 8'hA5, // Byte 7 + write_test_address_counter[0 +: 8] | 8'h1A, // Byte 6 + write_test_address_counter[0 +: 8] & 8'h33, // Byte 5 + write_test_address_counter[0 +: 8] ^ 8'h5A, // Byte 4 + write_test_address_counter[0 +: 8] & 8'h21, // Byte 3 + write_test_address_counter[0 +: 8] | 8'hC7, // Byte 2 + write_test_address_counter[0 +: 8] ^ 8'h7E, // Byte 1 + write_test_address_counter[0 +: 8] ^ 8'h3C}} // Byte 0 + }; + + /******************************************************* Test Receiver *******************************************************/ + assign correct_data = { + {(WB_SEL_BITS/8){check_test_address_counter[0 +: 8] ^ 8'hA5, // Byte 7 + check_test_address_counter[0 +: 8] | 8'h1A, // Byte 6 + check_test_address_counter[0 +: 8] & 8'h33, // Byte 5 + check_test_address_counter[0 +: 8] ^ 8'h5A, // Byte 4 + check_test_address_counter[0 +: 8] & 8'h21, // Byte 3 + check_test_address_counter[0 +: 8] | 8'hC7, // Byte 2 + check_test_address_counter[0 +: 8] ^ 8'h7E, // Byte 1 + check_test_address_counter[0 +: 8] ^ 8'h3C }} // Byte 0 + }; + + always @(posedge i_clk, negedge i_rst_n) begin + if(!i_rst_n) begin + check_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + correct_read_data_counter <= 64'd0; + wrong_read_data_counter <= 64'd0; + wrong_data <= 512'd0; + expected_data <= 512'd0; + end + else begin + if(i_calib_complete) begin + if ( i_wb_ack && i_aux[2:0] == 3'd3 ) begin //o_aux = 3 is for read requests from DDR3 test + if(i_wb_data == correct_data) begin // if read data matches the expected, increment correct_read_data_counter + correct_read_data_counter <= correct_read_data_counter + 64'd1; + end + else begin + wrong_read_data_counter <= wrong_read_data_counter + 64'd1; + wrong_data <= i_wb_data; + expected_data <= correct_data; + end + /* verilator lint_off WIDTHEXPAND */ + check_test_address_counter <= check_test_address_counter + 1; + if(check_test_address_counter+1'b1 == {(WB_ADDR_BITS){1'b0}}) begin // if next address returns to zero, then if in MICRON_SIM jump to SIM_ADDRESS_START + check_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : {(WB_ADDR_BITS){1'b0}}; + end + /* verilator lint_on WIDTHEXPAND */ + end + end + else begin + check_test_address_counter <= MICRON_SIM? SIM_ADDRESS_START : 0; + correct_read_data_counter <= 64'd0; + wrong_read_data_counter <= 64'd0; + wrong_data <= 512'd0; + expected_data <= 512'd0; + end + end + + end + /*********************************************************************************************************************************************/ + // 64-bit counter to know how much time had passed and also debounce of btn for fault-injection + (* mark_debug = "true" *) reg[27:0] btn_debounce_delay; + (* mark_debug = "true" *) reg btn_pulse_long, btn_pulse_long_prev; + (* mark_debug = "true" *) wire btn_pulse; + assign btn_pulse = btn_pulse_long && !btn_pulse_long_prev; // if current btn_pulse is high but previously low (posedge) then make pulse + + always @(posedge i_clk, negedge i_rst_n) begin + if(!i_rst_n) begin + btn_pulse_long_prev <= 1'b0; + btn_debounce_delay <= 0; + btn_pulse_long <= 0; + end + else begin + btn_pulse_long_prev <= btn_pulse_long; + if(btn && !btn_pulse_long) begin // when btn asserts and btn_pulse_long is still low + btn_pulse_long <= 1'b1; + end + if(btn_debounce_delay[27]) begin // if ~1.3s had passed, set btn_pulse_long low and reset delay + btn_pulse_long <= 0; + btn_debounce_delay <= 0; + end + else begin + btn_debounce_delay <= btn_pulse_long? btn_debounce_delay + 1 : 0; + end + end + end + + always @(posedge i_clk100, negedge i_rst_n) begin + if(!i_rst_n) begin + time_counter <= 64'd0; + end + else begin + time_counter <= time_counter + 1; + end + end + + design_1_wrapper microblaze_inst + ( .clk_in1_0(i_clk100), + .correct_read_data_counter_0(correct_read_data_counter), + .reset_rtl_0(i_rst_n), + .time_counter_0(time_counter), + .injected_faults_counter_0(injected_faults_counter), + .uart_rtl_0_rxd(rx), + .uart_rtl_0_txd(tx), + .wrong_read_data_counter_0(wrong_read_data_counter) + ); +endmodule diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/bd/bd.tcl b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/bd/bd.tcl new file mode 100644 index 0000000..4804aeb --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/bd/bd.tcl @@ -0,0 +1,86 @@ + +proc init { cellpath otherInfo } { + + set cell_handle [get_bd_cells $cellpath] + set all_busif [get_bd_intf_pins $cellpath/*] + set axi_standard_param_list [list ID_WIDTH AWUSER_WIDTH ARUSER_WIDTH WUSER_WIDTH RUSER_WIDTH BUSER_WIDTH] + set full_sbusif_list [list ] + + foreach busif $all_busif { + if { [string equal -nocase [get_property MODE $busif] "slave"] == 1 } { + set busif_param_list [list] + set busif_name [get_property NAME $busif] + if { [lsearch -exact -nocase $full_sbusif_list $busif_name ] == -1 } { + continue + } + foreach tparam $axi_standard_param_list { + lappend busif_param_list "C_${busif_name}_${tparam}" + } + bd::mark_propagate_only $cell_handle $busif_param_list + } + } +} + + +proc pre_propagate {cellpath otherInfo } { + + set cell_handle [get_bd_cells $cellpath] + set all_busif [get_bd_intf_pins $cellpath/*] + set axi_standard_param_list [list ID_WIDTH AWUSER_WIDTH ARUSER_WIDTH WUSER_WIDTH RUSER_WIDTH BUSER_WIDTH] + + foreach busif $all_busif { + if { [string equal -nocase [get_property CONFIG.PROTOCOL $busif] "AXI4"] != 1 } { + continue + } + if { [string equal -nocase [get_property MODE $busif] "master"] != 1 } { + continue + } + + set busif_name [get_property NAME $busif] + foreach tparam $axi_standard_param_list { + set busif_param_name "C_${busif_name}_${tparam}" + + set val_on_cell_intf_pin [get_property CONFIG.${tparam} $busif] + set val_on_cell [get_property CONFIG.${busif_param_name} $cell_handle] + + if { [string equal -nocase $val_on_cell_intf_pin $val_on_cell] != 1 } { + if { $val_on_cell != "" } { + set_property CONFIG.${tparam} $val_on_cell $busif + } + } + } + } +} + + +proc propagate {cellpath otherInfo } { + + set cell_handle [get_bd_cells $cellpath] + set all_busif [get_bd_intf_pins $cellpath/*] + set axi_standard_param_list [list ID_WIDTH AWUSER_WIDTH ARUSER_WIDTH WUSER_WIDTH RUSER_WIDTH BUSER_WIDTH] + + foreach busif $all_busif { + if { [string equal -nocase [get_property CONFIG.PROTOCOL $busif] "AXI4"] != 1 } { + continue + } + if { [string equal -nocase [get_property MODE $busif] "slave"] != 1 } { + continue + } + + set busif_name [get_property NAME $busif] + foreach tparam $axi_standard_param_list { + set busif_param_name "C_${busif_name}_${tparam}" + + set val_on_cell_intf_pin [get_property CONFIG.${tparam} $busif] + set val_on_cell [get_property CONFIG.${busif_param_name} $cell_handle] + + if { [string equal -nocase $val_on_cell_intf_pin $val_on_cell] != 1 } { + #override property of bd_interface_net to bd_cell -- only for slaves. May check for supported values.. + if { $val_on_cell_intf_pin != "" } { + set_property CONFIG.${busif_param_name} $val_on_cell_intf_pin $cell_handle + } + } + } + } +} + diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/component.xml b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/component.xml new file mode 100644 index 0000000..f516cf4 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/component.xml @@ -0,0 +1,900 @@ + + + user.org + user + ddr3_test_monitor_axi + 1.0 + + + s00_axi + + + + + + + + + AWADDR + + + s00_axi_awaddr + + + + + AWPROT + + + s00_axi_awprot + + + + + AWVALID + + + s00_axi_awvalid + + + + + AWREADY + + + s00_axi_awready + + + + + WDATA + + + s00_axi_wdata + + + + + WSTRB + + + s00_axi_wstrb + + + + + WVALID + + + s00_axi_wvalid + + + + + WREADY + + + s00_axi_wready + + + + + BRESP + + + s00_axi_bresp + + + + + BVALID + + + s00_axi_bvalid + + + + + BREADY + + + s00_axi_bready + + + + + ARADDR + + + s00_axi_araddr + + + + + ARPROT + + + s00_axi_arprot + + + + + ARVALID + + + s00_axi_arvalid + + + + + ARREADY + + + s00_axi_arready + + + + + RDATA + + + s00_axi_rdata + + + + + RRESP + + + s00_axi_rresp + + + + + RVALID + + + s00_axi_rvalid + + + + + RREADY + + + s00_axi_rready + + + + + + s00_axi_aclk + + + + + + + CLK + + + s00_axi_aclk + + + + + + ASSOCIATED_BUSIF + s00_axi + + + ASSOCIATED_RESET + s00_axi_aresetn + + + + + s00_axi_aresetn + + + + + + + RST + + + s00_axi_aresetn + + + + + + POLARITY + ACTIVE_LOW + + + + + + + s00_axi + s00_axi + + reg0 + reg0 + 0x0 + 4096 + 32 + register + + + + + + + xilinx_verilogsynthesis + Verilog Synthesis + verilogSource:vivado.xilinx.com:synthesis + verilog + ddr3_test_monitor_axi_v1_0 + + xilinx_verilogsynthesis_view_fileset + + + + viewChecksum + 02a2ca45 + + + + + xilinx_verilogbehavioralsimulation + Verilog Simulation + verilogSource:vivado.xilinx.com:simulation + verilog + ddr3_test_monitor_axi_v1_0 + + xilinx_verilogbehavioralsimulation_view_fileset + + + + viewChecksum + 02a2ca45 + + + + + xilinx_softwaredriver + Software Driver + :vivado.xilinx.com:sw.driver + + xilinx_softwaredriver_view_fileset + + + + viewChecksum + 533b7796 + + + + + xilinx_xpgui + UI Layout + :vivado.xilinx.com:xgui.ui + + xilinx_xpgui_view_fileset + + + + viewChecksum + 080b65eb + + + + + bd_tcl + Block Diagram + :vivado.xilinx.com:block.diagram + + bd_tcl_view_fileset + + + + viewChecksum + 45a2f450 + + + + + + + correct_read_data_counter + + in + + 63 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + wrong_read_data_counter + + in + + 63 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + time_counter + + in + + 63 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + injected_faults_counter + + in + + 31 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_aclk + + in + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_aresetn + + in + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_awaddr + + in + + 6 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_awprot + + in + + 2 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_awvalid + + in + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_awready + + out + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_wdata + + in + + 31 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_wstrb + + in + + 3 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 1 + + + + + s00_axi_wvalid + + in + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_wready + + out + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_bresp + + out + + 1 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_bvalid + + out + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_bready + + in + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_araddr + + in + + 6 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_arprot + + in + + 2 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_arvalid + + in + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + s00_axi_arready + + out + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_rdata + + out + + 31 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_rresp + + out + + 1 + 0 + + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_rvalid + + out + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + + + s00_axi_rready + + in + + + wire + xilinx_verilogsynthesis + xilinx_verilogbehavioralsimulation + + + + 0 + + + + + + + C_S00_AXI_DATA_WIDTH + C S00 AXI DATA WIDTH + Width of S_AXI data bus + 32 + + + C_S00_AXI_ADDR_WIDTH + C S00 AXI ADDR WIDTH + Width of S_AXI address bus + 7 + + + + + + choice_list_6fc15197 + 32 + + + choice_list_74b5137e + ACTIVE_HIGH + ACTIVE_LOW + + + + + xilinx_verilogsynthesis_view_fileset + + hdl/ddr3_test_monitor_axi_v1_0_S00_AXI.v + verilogSource + + + hdl/ddr3_test_monitor_axi_v1_0.v + verilogSource + CHECKSUM_e4de66a6 + + + + xilinx_verilogbehavioralsimulation_view_fileset + + hdl/ddr3_test_monitor_axi_v1_0_S00_AXI.v + verilogSource + + + hdl/ddr3_test_monitor_axi_v1_0.v + verilogSource + + + + xilinx_softwaredriver_view_fileset + + drivers/ddr3_test_monitor_axi_v1_0/data/ddr3_test_monitor_axi.mdd + mdd + driver_mdd + + + drivers/ddr3_test_monitor_axi_v1_0/data/ddr3_test_monitor_axi.tcl + tclSource + driver_tcl + + + drivers/ddr3_test_monitor_axi_v1_0/src/Makefile + driver_src + + + drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi.h + cSource + driver_src + + + drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi.c + cSource + driver_src + + + drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi_selftest.c + cSource + driver_src + + + + xilinx_xpgui_view_fileset + + xgui/ddr3_test_monitor_axi_v1_0.tcl + tclSource + CHECKSUM_080b65eb + XGUI_VERSION_2 + + + + bd_tcl_view_fileset + + bd/bd.tcl + tclSource + + + + monitors ddr3 test results + + + C_S00_AXI_DATA_WIDTH + C S00 AXI DATA WIDTH + Width of S_AXI data bus + 32 + + + + false + + + + + + C_S00_AXI_ADDR_WIDTH + C S00 AXI ADDR WIDTH + Width of S_AXI address bus + 7 + + + + false + + + + + + C_S00_AXI_BASEADDR + C S00 AXI BASEADDR + 0xFFFFFFFF + + + + false + + + + + + C_S00_AXI_HIGHADDR + C S00 AXI HIGHADDR + 0x00000000 + + + + false + + + + + + Component_Name + ddr3_test_monitor_axi_v1_0 + + + + + + kintex7 + + + AXI_Peripheral + + ddr3_test_monitor_axi_v1.0 + 9 + 2025-02-09T12:59:49Z + + + 2022.1 + + + + + + + + + diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/data/ddr3_test_monitor_axi.mdd b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/data/ddr3_test_monitor_axi.mdd new file mode 100644 index 0000000..f3fbd5b --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/data/ddr3_test_monitor_axi.mdd @@ -0,0 +1,10 @@ + + +OPTION psf_version = 2.1; + +BEGIN DRIVER ddr3_test_monitor_axi + OPTION supported_peripherals = (ddr3_test_monitor_axi); + OPTION copyfiles = all; + OPTION VERSION = 1.0; + OPTION NAME = ddr3_test_monitor_axi; +END DRIVER diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/data/ddr3_test_monitor_axi.tcl b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/data/ddr3_test_monitor_axi.tcl new file mode 100644 index 0000000..37c8517 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/data/ddr3_test_monitor_axi.tcl @@ -0,0 +1,5 @@ + + +proc generate {drv_handle} { + xdefine_include_file $drv_handle "xparameters.h" "ddr3_test_monitor_axi" "NUM_INSTANCES" "DEVICE_ID" "C_S00_AXI_BASEADDR" "C_S00_AXI_HIGHADDR" +} diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/Makefile b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/Makefile new file mode 100644 index 0000000..730488b --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/Makefile @@ -0,0 +1,26 @@ +COMPILER= +ARCHIVER= +CP=cp +COMPILER_FLAGS= +EXTRA_COMPILER_FLAGS= +LIB=libxil.a + +RELEASEDIR=../../../lib +INCLUDEDIR=../../../include +INCLUDES=-I./. -I${INCLUDEDIR} + +INCLUDEFILES=*.h +LIBSOURCES=*.c +OUTS = *.o + +libs: + echo "Compiling ddr3_test_monitor_axi..." + $(COMPILER) $(COMPILER_FLAGS) $(EXTRA_COMPILER_FLAGS) $(INCLUDES) $(LIBSOURCES) + $(ARCHIVER) -r ${RELEASEDIR}/${LIB} ${OUTS} + make clean + +include: + ${CP} $(INCLUDEFILES) $(INCLUDEDIR) + +clean: + rm -rf ${OUTS} diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi.c b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi.c new file mode 100644 index 0000000..586219c --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi.c @@ -0,0 +1,6 @@ + + +/***************************** Include Files *******************************/ +#include "ddr3_test_monitor_axi.h" + +/************************** Function Definitions ***************************/ diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi.h b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi.h new file mode 100644 index 0000000..de5c85b --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi.h @@ -0,0 +1,107 @@ + +#ifndef DDR3_TEST_MONITOR_AXI_H +#define DDR3_TEST_MONITOR_AXI_H + + +/****************** Include Files ********************/ +#include "xil_types.h" +#include "xstatus.h" + +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG0_OFFSET 0 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG1_OFFSET 4 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG2_OFFSET 8 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG3_OFFSET 12 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG4_OFFSET 16 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG5_OFFSET 20 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG6_OFFSET 24 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG7_OFFSET 28 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG8_OFFSET 32 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG9_OFFSET 36 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG10_OFFSET 40 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG11_OFFSET 44 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG12_OFFSET 48 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG13_OFFSET 52 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG14_OFFSET 56 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG15_OFFSET 60 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG16_OFFSET 64 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG17_OFFSET 68 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG18_OFFSET 72 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG19_OFFSET 76 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG20_OFFSET 80 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG21_OFFSET 84 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG22_OFFSET 88 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG23_OFFSET 92 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG24_OFFSET 96 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG25_OFFSET 100 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG26_OFFSET 104 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG27_OFFSET 108 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG28_OFFSET 112 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG29_OFFSET 116 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG30_OFFSET 120 +#define DDR3_TEST_MONITOR_AXI_S00_AXI_SLV_REG31_OFFSET 124 + + +/**************************** Type Definitions *****************************/ +/** + * + * Write a value to a DDR3_TEST_MONITOR_AXI register. A 32 bit write is performed. + * If the component is implemented in a smaller width, only the least + * significant data is written. + * + * @param BaseAddress is the base address of the DDR3_TEST_MONITOR_AXIdevice. + * @param RegOffset is the register offset from the base to write to. + * @param Data is the data written to the register. + * + * @return None. + * + * @note + * C-style signature: + * void DDR3_TEST_MONITOR_AXI_mWriteReg(u32 BaseAddress, unsigned RegOffset, u32 Data) + * + */ +#define DDR3_TEST_MONITOR_AXI_mWriteReg(BaseAddress, RegOffset, Data) \ + Xil_Out32((BaseAddress) + (RegOffset), (u32)(Data)) + +/** + * + * Read a value from a DDR3_TEST_MONITOR_AXI register. A 32 bit read is performed. + * If the component is implemented in a smaller width, only the least + * significant data is read from the register. The most significant data + * will be read as 0. + * + * @param BaseAddress is the base address of the DDR3_TEST_MONITOR_AXI device. + * @param RegOffset is the register offset from the base to write to. + * + * @return Data is the data from the register. + * + * @note + * C-style signature: + * u32 DDR3_TEST_MONITOR_AXI_mReadReg(u32 BaseAddress, unsigned RegOffset) + * + */ +#define DDR3_TEST_MONITOR_AXI_mReadReg(BaseAddress, RegOffset) \ + Xil_In32((BaseAddress) + (RegOffset)) + +/************************** Function Prototypes ****************************/ +/** + * + * Run a self-test on the driver/device. Note this may be a destructive test if + * resets of the device are performed. + * + * If the hardware system is not built correctly, this function may never + * return to the caller. + * + * @param baseaddr_p is the base address of the DDR3_TEST_MONITOR_AXI instance to be worked on. + * + * @return + * + * - XST_SUCCESS if all self-test code passed + * - XST_FAILURE if any self-test code failed + * + * @note Caching must be turned off for this function to work. + * @note Self test may fail if data memory and device are not on the same bus. + * + */ +XStatus DDR3_TEST_MONITOR_AXI_Reg_SelfTest(void * baseaddr_p); + +#endif // DDR3_TEST_MONITOR_AXI_H diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi_selftest.c b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi_selftest.c new file mode 100644 index 0000000..7207da2 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/drivers/ddr3_test_monitor_axi_v1_0/src/ddr3_test_monitor_axi_selftest.c @@ -0,0 +1,60 @@ + +/***************************** Include Files *******************************/ +#include "ddr3_test_monitor_axi.h" +#include "xparameters.h" +#include "stdio.h" +#include "xil_io.h" + +/************************** Constant Definitions ***************************/ +#define READ_WRITE_MUL_FACTOR 0x10 + +/************************** Function Definitions ***************************/ +/** + * + * Run a self-test on the driver/device. Note this may be a destructive test if + * resets of the device are performed. + * + * If the hardware system is not built correctly, this function may never + * return to the caller. + * + * @param baseaddr_p is the base address of the DDR3_TEST_MONITOR_AXIinstance to be worked on. + * + * @return + * + * - XST_SUCCESS if all self-test code passed + * - XST_FAILURE if any self-test code failed + * + * @note Caching must be turned off for this function to work. + * @note Self test may fail if data memory and device are not on the same bus. + * + */ +XStatus DDR3_TEST_MONITOR_AXI_Reg_SelfTest(void * baseaddr_p) +{ + u32 baseaddr; + int write_loop_index; + int read_loop_index; + int Index; + + baseaddr = (u32) baseaddr_p; + + xil_printf("******************************\n\r"); + xil_printf("* User Peripheral Self Test\n\r"); + xil_printf("******************************\n\n\r"); + + /* + * Write to user logic slave module register(s) and read back + */ + xil_printf("User logic slave module test...\n\r"); + + for (write_loop_index = 0 ; write_loop_index < 4; write_loop_index++) + DDR3_TEST_MONITOR_AXI_mWriteReg (baseaddr, write_loop_index*4, (write_loop_index+1)*READ_WRITE_MUL_FACTOR); + for (read_loop_index = 0 ; read_loop_index < 4; read_loop_index++) + if ( DDR3_TEST_MONITOR_AXI_mReadReg (baseaddr, read_loop_index*4) != (read_loop_index+1)*READ_WRITE_MUL_FACTOR){ + xil_printf ("Error reading register value at address %x\n", (int)baseaddr + read_loop_index*4); + return XST_FAILURE; + } + + xil_printf(" - slave register write/read passed\n\n\r"); + + return XST_SUCCESS; +} diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/bfm_design/ddr3_test_monitor_axi_v1_0_tb.sv b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/bfm_design/ddr3_test_monitor_axi_v1_0_tb.sv new file mode 100644 index 0000000..08656db --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/bfm_design/ddr3_test_monitor_axi_v1_0_tb.sv @@ -0,0 +1,197 @@ + +`timescale 1ns / 1ps +`include "ddr3_test_monitor_axi_v1_0_tb_include.svh" + +import axi_vip_pkg::*; +import ddr3_test_monitor_axi_v1_0_bfm_1_master_0_0_pkg::*; + +module ddr3_test_monitor_axi_v1_0_tb(); + + +xil_axi_uint error_cnt = 0; +xil_axi_uint comparison_cnt = 0; +axi_transaction wr_transaction; +axi_transaction rd_transaction; +axi_monitor_transaction mst_monitor_transaction; +axi_monitor_transaction master_moniter_transaction_queue[$]; +xil_axi_uint master_moniter_transaction_queue_size =0; +axi_monitor_transaction mst_scb_transaction; +axi_monitor_transaction passthrough_monitor_transaction; +axi_monitor_transaction passthrough_master_moniter_transaction_queue[$]; +xil_axi_uint passthrough_master_moniter_transaction_queue_size =0; +axi_monitor_transaction passthrough_mst_scb_transaction; +axi_monitor_transaction passthrough_slave_moniter_transaction_queue[$]; +xil_axi_uint passthrough_slave_moniter_transaction_queue_size =0; +axi_monitor_transaction passthrough_slv_scb_transaction; +axi_monitor_transaction slv_monitor_transaction; +axi_monitor_transaction slave_moniter_transaction_queue[$]; +xil_axi_uint slave_moniter_transaction_queue_size =0; +axi_monitor_transaction slv_scb_transaction; +xil_axi_uint mst_agent_verbosity = 0; +xil_axi_uint slv_agent_verbosity = 0; +xil_axi_uint passthrough_agent_verbosity = 0; +bit clock; +bit reset; +integer result_slave; +bit [31:0] S00_AXI_test_data[3:0]; + localparam LC_AXI_BURST_LENGTH = 8; + localparam LC_AXI_DATA_WIDTH = 32; +task automatic COMPARE_DATA; + input [(LC_AXI_BURST_LENGTH * LC_AXI_DATA_WIDTH)-1:0]expected; + input [(LC_AXI_BURST_LENGTH * LC_AXI_DATA_WIDTH)-1:0]actual; + begin + if (expected === 'hx || actual === 'hx) begin + $display("TESTBENCH ERROR! COMPARE_DATA cannot be performed with an expected or actual vector that is all 'x'!"); + result_slave = 0; $stop; + end + if (actual != expected) begin + $display("TESTBENCH ERROR! Data expected is not equal to actual.", " expected = 0x%h",expected, " actual = 0x%h",actual); + result_slave = 0; + $stop; + end + else + begin + $display("TESTBENCH Passed! Data expected is equal to actual.", + " expected = 0x%h",expected, " actual = 0x%h",actual); + end + end +endtask +integer i; +integer j; +xil_axi_uint trans_cnt_before_switch = 48; +xil_axi_uint passthrough_cmd_switch_cnt = 0; +event passthrough_mastermode_start_event; +event passthrough_mastermode_end_event; +event passthrough_slavemode_end_event; +xil_axi_uint mtestID; +xil_axi_ulong mtestADDR; +xil_axi_len_t mtestBurstLength; +xil_axi_size_t mtestDataSize; +xil_axi_burst_t mtestBurstType; +xil_axi_lock_t mtestLOCK; +xil_axi_cache_t mtestCacheType = 0; +xil_axi_prot_t mtestProtectionType = 3'b000; +xil_axi_region_t mtestRegion = 4'b000; +xil_axi_qos_t mtestQOS = 4'b000; +xil_axi_data_beat dbeat; +xil_axi_data_beat [255:0] mtestWUSER; +xil_axi_data_beat mtestAWUSER = 'h0; +xil_axi_data_beat mtestARUSER = 0; +xil_axi_data_beat [255:0] mtestRUSER; +xil_axi_uint mtestBUSER = 0; +xil_axi_resp_t mtestBresp; +xil_axi_resp_t[255:0] mtestRresp; +bit [63:0] mtestWDataL; +bit [63:0] mtestRDataL; +axi_transaction pss_wr_transaction; +axi_transaction pss_rd_transaction; +axi_transaction reactive_transaction; +axi_transaction rd_payload_transaction; +axi_transaction wr_rand; +axi_transaction rd_rand; +axi_transaction wr_reactive; +axi_transaction rd_reactive; +axi_transaction wr_reactive2; +axi_transaction rd_reactive2; +axi_ready_gen bready_gen; +axi_ready_gen rready_gen; +axi_ready_gen awready_gen; +axi_ready_gen wready_gen; +axi_ready_gen arready_gen; +axi_ready_gen bready_gen2; +axi_ready_gen rready_gen2; +axi_ready_gen awready_gen2; +axi_ready_gen wready_gen2; +axi_ready_gen arready_gen2; +xil_axi_payload_byte data_mem[xil_axi_ulong]; +ddr3_test_monitor_axi_v1_0_bfm_1_master_0_0_mst_t mst_agent_0; + + `BD_WRAPPER DUT( + .ARESETN(reset), + .ACLK(clock) + ); + +initial begin + mst_agent_0 = new("master vip agent",DUT.`BD_INST_NAME.master_0.inst.IF);//ms + mst_agent_0.vif_proxy.set_dummy_drive_type(XIL_AXI_VIF_DRIVE_NONE); + mst_agent_0.set_agent_tag("Master VIP"); + mst_agent_0.set_verbosity(mst_agent_verbosity); + mst_agent_0.start_master(); + $timeformat (-12, 1, " ps", 1); + end + initial begin + reset <= 1'b0; + #200ns; + reset <= 1'b1; + repeat (5) @(negedge clock); + end + always #5 clock <= ~clock; + initial begin + S_AXI_TEST ( ); + + #1ns; + $finish; + end +task automatic S_AXI_TEST; +begin +#1; + $display("Sequential write transfers example similar to AXI BFM WRITE_BURST method starts"); + mtestID = 0; + mtestADDR = 64'h00000000; + mtestBurstLength = 0; + mtestDataSize = xil_axi_size_t'(xil_clog2(32/8)); + mtestBurstType = XIL_AXI_BURST_TYPE_INCR; + mtestLOCK = XIL_AXI_ALOCK_NOLOCK; + mtestCacheType = 0; + mtestProtectionType = 0; + mtestRegion = 0; + mtestQOS = 0; + result_slave = 1; + mtestWDataL[31:0] = 32'h00000001; + for(int i = 0; i < 4;i++) begin + S00_AXI_test_data[i] <= mtestWDataL[31:0]; + mst_agent_0.AXI4LITE_WRITE_BURST( + mtestADDR, + mtestProtectionType, + mtestWDataL, + mtestBresp + ); + mtestWDataL[31:0] = mtestWDataL[31:0] + 1; + mtestADDR = mtestADDR + 64'h4; + end + $display("Sequential write transfers example similar to AXI BFM WRITE_BURST method completes"); + $display("Sequential read transfers example similar to AXI BFM READ_BURST method starts"); + mtestID = 0; + mtestADDR = 64'h00000000; + mtestBurstLength = 0; + mtestDataSize = xil_axi_size_t'(xil_clog2(32/8)); + mtestBurstType = XIL_AXI_BURST_TYPE_INCR; + mtestLOCK = XIL_AXI_ALOCK_NOLOCK; + mtestCacheType = 0; + mtestProtectionType = 0; + mtestRegion = 0; + mtestQOS = 0; + for(int i = 0; i < 4;i++) begin + mst_agent_0.AXI4LITE_READ_BURST( + mtestADDR, + mtestProtectionType, + mtestRDataL, + mtestRresp + ); + mtestADDR = mtestADDR + 64'h4; + COMPARE_DATA(S00_AXI_test_data[i],mtestRDataL); + end + $display("Sequential read transfers example similar to AXI BFM READ_BURST method completes"); + $display("Sequential read transfers example similar to AXI VIP READ_BURST method completes"); + $display("---------------------------------------------------------"); + $display("EXAMPLE TEST S00_AXI: PTGEN_TEST_FINISHED!"); + if ( result_slave ) begin + $display("PTGEN_TEST: PASSED!"); + end else begin + $display("PTGEN_TEST: FAILED!"); + end + $display("---------------------------------------------------------"); + end +endtask + +endmodule diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/bfm_design/design.tcl b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/bfm_design/design.tcl new file mode 100644 index 0000000..083ca7f --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/bfm_design/design.tcl @@ -0,0 +1,88 @@ +proc create_ipi_design { offsetfile design_name } { + create_bd_design $design_name + open_bd_design $design_name + + # Create Clock and Reset Ports + set ACLK [ create_bd_port -dir I -type clk ACLK ] + set_property -dict [ list CONFIG.FREQ_HZ {100000000} CONFIG.PHASE {0.000} CONFIG.CLK_DOMAIN "${design_name}_ACLK" ] $ACLK + set ARESETN [ create_bd_port -dir I -type rst ARESETN ] + set_property -dict [ list CONFIG.POLARITY {ACTIVE_LOW} ] $ARESETN + set_property CONFIG.ASSOCIATED_RESET ARESETN $ACLK + + # Create instance: ddr3_test_monitor_axi_0, and set properties + set ddr3_test_monitor_axi_0 [ create_bd_cell -type ip -vlnv user.org:user:ddr3_test_monitor_axi:1.0 ddr3_test_monitor_axi_0] + + # Create instance: master_0, and set properties + set master_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_vip master_0] + set_property -dict [ list CONFIG.PROTOCOL {AXI4LITE} CONFIG.INTERFACE_MODE {MASTER} ] $master_0 + + # Create interface connections + connect_bd_intf_net [get_bd_intf_pins master_0/M_AXI ] [get_bd_intf_pins ddr3_test_monitor_axi_0/S00_AXI] + + # Create port connections + connect_bd_net -net aclk_net [get_bd_ports ACLK] [get_bd_pins master_0/ACLK] [get_bd_pins ddr3_test_monitor_axi_0/S00_AXI_ACLK] + connect_bd_net -net aresetn_net [get_bd_ports ARESETN] [get_bd_pins master_0/ARESETN] [get_bd_pins ddr3_test_monitor_axi_0/S00_AXI_ARESETN] +set_property target_simulator XSim [current_project] +set_property -name {xsim.simulate.runtime} -value {100ms} -objects [get_filesets sim_1] + + # Auto assign address + assign_bd_address + + # Copy all address to interface_address.vh file + set bd_path [file dirname [get_property NAME [get_files ${design_name}.bd]]] + upvar 1 $offsetfile offset_file + set offset_file "${bd_path}/ddr3_test_monitor_axi_v1_0_tb_include.svh" + set fp [open $offset_file "w"] + puts $fp "`ifndef ddr3_test_monitor_axi_v1_0_tb_include_vh_" + puts $fp "`define ddr3_test_monitor_axi_v1_0_tb_include_vh_\n" + puts $fp "//Configuration current bd names" + puts $fp "`define BD_NAME ${design_name}" + puts $fp "`define BD_INST_NAME ${design_name}_i" + puts $fp "`define BD_WRAPPER ${design_name}_wrapper\n" + puts $fp "//Configuration address parameters" + + puts $fp "`endif" + close $fp +} + +set ip_path [file dirname [file normalize [get_property XML_FILE_NAME [ipx::get_cores user.org:user:ddr3_test_monitor_axi:1.0]]]] +set test_bench_file ${ip_path}/example_designs/bfm_design/ddr3_test_monitor_axi_v1_0_tb.sv +set interface_address_vh_file "" + +# Set IP Repository and Update IP Catalogue +set repo_paths [get_property ip_repo_paths [current_fileset]] +if { [lsearch -exact -nocase $repo_paths $ip_path ] == -1 } { + set_property ip_repo_paths "$ip_path [get_property ip_repo_paths [current_fileset]]" [current_fileset] + update_ip_catalog +} + +set design_name "" +set all_bd {} +set all_bd_files [get_files *.bd -quiet] +foreach file $all_bd_files { +set file_name [string range $file [expr {[string last "/" $file] + 1}] end] +set bd_name [string range $file_name 0 [expr {[string last "." $file_name] -1}]] +lappend all_bd $bd_name +} + +for { set i 1 } { 1 } { incr i } { + set design_name "ddr3_test_monitor_axi_v1_0_bfm_${i}" + if { [lsearch -exact -nocase $all_bd $design_name ] == -1 } { + break + } +} + +create_ipi_design interface_address_vh_file ${design_name} +validate_bd_design + +set wrapper_file [make_wrapper -files [get_files ${design_name}.bd] -top -force] +import_files -force -norecurse $wrapper_file + +set_property SOURCE_SET sources_1 [get_filesets sim_1] +import_files -fileset sim_1 -norecurse -force $test_bench_file +remove_files -quiet -fileset sim_1 ddr3_test_monitor_axi_v1_0_tb_include.vh +import_files -fileset sim_1 -norecurse -force $interface_address_vh_file +set_property top ddr3_test_monitor_axi_v1_0_tb [get_filesets sim_1] +set_property top_lib {} [get_filesets sim_1] +set_property top_file {} [get_filesets sim_1] +launch_simulation -simset sim_1 -mode behavioral diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/debug_hw_design/ddr3_test_monitor_axi_v1_0_hw_test.tcl b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/debug_hw_design/ddr3_test_monitor_axi_v1_0_hw_test.tcl new file mode 100644 index 0000000..fa5cc17 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/debug_hw_design/ddr3_test_monitor_axi_v1_0_hw_test.tcl @@ -0,0 +1,45 @@ +# Runtime Tcl commands to interact with - ddr3_test_monitor_axi_v1_0 + +# Sourcing design address info tcl +set bd_path [get_property DIRECTORY [current_project]]/[current_project].srcs/[current_fileset]/bd +source ${bd_path}/ddr3_test_monitor_axi_v1_0_include.tcl + +# jtag axi master interface hardware name, change as per your design. +set jtag_axi_master hw_axi_1 +set ec 0 + +# hw test script +# Delete all previous axis transactions +if { [llength [get_hw_axi_txns -quiet]] } { + delete_hw_axi_txn [get_hw_axi_txns -quiet] +} + + +# Test all lite slaves. +set wdata_1 abcd1234 + +# Test: S00_AXI +# Create a write transaction at s00_axi_addr address +create_hw_axi_txn w_s00_axi_addr [get_hw_axis $jtag_axi_master] -type write -address $s00_axi_addr -data $wdata_1 +# Create a read transaction at s00_axi_addr address +create_hw_axi_txn r_s00_axi_addr [get_hw_axis $jtag_axi_master] -type read -address $s00_axi_addr +# Initiate transactions +run_hw_axi r_s00_axi_addr +run_hw_axi w_s00_axi_addr +run_hw_axi r_s00_axi_addr +set rdata_tmp [get_property DATA [get_hw_axi_txn r_s00_axi_addr]] +# Compare read data +if { $rdata_tmp == $wdata_1 } { + puts "Data comparison test pass for - S00_AXI" +} else { + puts "Data comparison test fail for - S00_AXI, expected-$wdata_1 actual-$rdata_tmp" + inc ec +} + +# Check error flag +if { $ec == 0 } { + puts "PTGEN_TEST: PASSED!" +} else { + puts "PTGEN_TEST: FAILED!" +} + diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/debug_hw_design/design.tcl b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/debug_hw_design/design.tcl new file mode 100644 index 0000000..e3e74ec --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/example_designs/debug_hw_design/design.tcl @@ -0,0 +1,118 @@ + +proc create_ipi_design { offsetfile design_name } { + + create_bd_design $design_name + open_bd_design $design_name + + # Create and configure Clock/Reset + create_bd_cell -type ip -vlnv xilinx.com:ip:clk_wiz sys_clk_0 + create_bd_cell -type ip -vlnv xilinx.com:ip:proc_sys_reset sys_reset_0 + + #Constraints will be provided manually while pin planning. + create_bd_port -dir I -type rst reset_rtl + set_property CONFIG.POLARITY [get_property CONFIG.POLARITY [get_bd_pins sys_clk_0/reset]] [get_bd_ports reset_rtl] + connect_bd_net [get_bd_pins sys_reset_0/ext_reset_in] [get_bd_ports reset_rtl] + connect_bd_net [get_bd_ports reset_rtl] [get_bd_pins sys_clk_0/reset] + set external_reset_port reset_rtl + create_bd_port -dir I -type clk clock_rtl + connect_bd_net [get_bd_pins sys_clk_0/clk_in1] [get_bd_ports clock_rtl] + set external_clock_port clock_rtl + + #Avoid IPI DRC, make clock port synchronous to reset + if { $external_clock_port ne "" && $external_reset_port ne "" } { + set_property CONFIG.ASSOCIATED_RESET $external_reset_port [get_bd_ports $external_clock_port] + } + + # Connect other sys_reset pins + connect_bd_net [get_bd_pins sys_reset_0/slowest_sync_clk] [get_bd_pins sys_clk_0/clk_out1] + connect_bd_net [get_bd_pins sys_clk_0/locked] [get_bd_pins sys_reset_0/dcm_locked] + + # Create instance: ddr3_test_monitor_axi_0, and set properties + set ddr3_test_monitor_axi_0 [ create_bd_cell -type ip -vlnv user.org:user:ddr3_test_monitor_axi:1.0 ddr3_test_monitor_axi_0 ] + + # Create instance: jtag_axi_0, and set properties + set jtag_axi_0 [ create_bd_cell -type ip -vlnv xilinx.com:ip:jtag_axi jtag_axi_0 ] + set_property -dict [list CONFIG.PROTOCOL {0}] [get_bd_cells jtag_axi_0] + connect_bd_net [get_bd_pins jtag_axi_0/aclk] [get_bd_pins sys_clk_0/clk_out1] + connect_bd_net [get_bd_pins jtag_axi_0/aresetn] [get_bd_pins sys_reset_0/peripheral_aresetn] + + # Create instance: axi_peri_interconnect, and set properties + set axi_peri_interconnect [ create_bd_cell -type ip -vlnv xilinx.com:ip:axi_interconnect axi_peri_interconnect ] + connect_bd_net [get_bd_pins axi_peri_interconnect/ACLK] [get_bd_pins sys_clk_0/clk_out1] + connect_bd_net [get_bd_pins axi_peri_interconnect/ARESETN] [get_bd_pins sys_reset_0/interconnect_aresetn] + set_property -dict [ list CONFIG.NUM_SI {1} ] $axi_peri_interconnect + connect_bd_net [get_bd_pins axi_peri_interconnect/S00_ACLK] [get_bd_pins sys_clk_0/clk_out1] + connect_bd_net [get_bd_pins axi_peri_interconnect/S00_ARESETN] [get_bd_pins sys_reset_0/peripheral_aresetn] + connect_bd_intf_net [get_bd_intf_pins jtag_axi_0/M_AXI] [get_bd_intf_pins axi_peri_interconnect/S00_AXI] + + set_property -dict [ list CONFIG.NUM_MI {1} ] $axi_peri_interconnect + connect_bd_net [get_bd_pins axi_peri_interconnect/M00_ACLK] [get_bd_pins sys_clk_0/clk_out1] + connect_bd_net [get_bd_pins axi_peri_interconnect/M00_ARESETN] [get_bd_pins sys_reset_0/peripheral_aresetn] + + # Connect all clock & reset of ddr3_test_monitor_axi_0 slave interfaces.. + connect_bd_intf_net [get_bd_intf_pins axi_peri_interconnect/M00_AXI] [get_bd_intf_pins ddr3_test_monitor_axi_0/S00_AXI] + connect_bd_net [get_bd_pins ddr3_test_monitor_axi_0/s00_axi_aclk] [get_bd_pins sys_clk_0/clk_out1] + connect_bd_net [get_bd_pins ddr3_test_monitor_axi_0/s00_axi_aresetn] [get_bd_pins sys_reset_0/peripheral_aresetn] + + + # Auto assign address + assign_bd_address + + # Copy all address to ddr3_test_monitor_axi_v1_0_include.tcl file + set bd_path [get_property DIRECTORY [current_project]]/[current_project].srcs/[current_fileset]/bd + upvar 1 $offsetfile offset_file + set offset_file "${bd_path}/ddr3_test_monitor_axi_v1_0_include.tcl" + set fp [open $offset_file "w"] + puts $fp "# Configuration address parameters" + + set offset [get_property OFFSET [get_bd_addr_segs /jtag_axi_0/Data/SEG_ddr3_test_monitor_axi_0_S00_AXI_* ]] + puts $fp "set s00_axi_addr ${offset}" + + close $fp +} + +# Set IP Repository and Update IP Catalogue +set ip_path [file dirname [file normalize [get_property XML_FILE_NAME [ipx::get_cores user.org:user:ddr3_test_monitor_axi:1.0]]]] +set hw_test_file ${ip_path}/example_designs/debug_hw_design/ddr3_test_monitor_axi_v1_0_hw_test.tcl + +set repo_paths [get_property ip_repo_paths [current_fileset]] +if { [lsearch -exact -nocase $repo_paths $ip_path ] == -1 } { + set_property ip_repo_paths "$ip_path [get_property ip_repo_paths [current_fileset]]" [current_fileset] + update_ip_catalog +} + +set design_name "" +set all_bd {} +set all_bd_files [get_files *.bd -quiet] +foreach file $all_bd_files { +set file_name [string range $file [expr {[string last "/" $file] + 1}] end] +set bd_name [string range $file_name 0 [expr {[string last "." $file_name] -1}]] +lappend all_bd $bd_name +} + +for { set i 1 } { 1 } { incr i } { + set design_name "ddr3_test_monitor_axi_v1_0_hw_${i}" + if { [lsearch -exact -nocase $all_bd $design_name ] == -1 } { + break + } +} + +set intf_address_include_file "" +create_ipi_design intf_address_include_file ${design_name} +save_bd_design +validate_bd_design + +set wrapper_file [make_wrapper -files [get_files ${design_name}.bd] -top -force] +import_files -force -norecurse $wrapper_file + +puts "-------------------------------------------------------------------------------------------------" +puts "INFO NEXT STEPS : Until this stage, debug hardware design has been created, " +puts " please perform following steps to test design in targeted board." +puts "1. Generate bitstream" +puts "2. Setup your targeted board, open hardware manager and open new(or existing) hardware target" +puts "3. Download generated bitstream" +puts "4. Run generated hardware test using below command, this invokes basic read/write operation" +puts " to every interface present in the peripheral : xilinx.com:user:myip:1.0" +puts " : source -notrace ${hw_test_file}" +puts "-------------------------------------------------------------------------------------------------" + diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/hdl/ddr3_test_monitor_axi_v1_0.v b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/hdl/ddr3_test_monitor_axi_v1_0.v new file mode 100644 index 0000000..2c0ae43 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/hdl/ddr3_test_monitor_axi_v1_0.v @@ -0,0 +1,85 @@ + +`timescale 1 ns / 1 ps + + module ddr3_test_monitor_axi_v1_0 # + ( + // Users to add parameters here + + // User parameters ends + // Do not modify the parameters beyond this line + + + // Parameters of Axi Slave Bus Interface S00_AXI + parameter integer C_S00_AXI_DATA_WIDTH = 32, + parameter integer C_S00_AXI_ADDR_WIDTH = 7 + ) + ( + // Users to add ports here + input wire[63:0] correct_read_data_counter, // address x0 = [31:0], x1 = [63:32] + input wire[63:0] wrong_read_data_counter, // address x2 = [31:0], x3 = [63:32] + input wire[63:0] time_counter, // address x4 = [31:0], x5 = [63:32] + input wire[31:0] injected_faults_counter, + // User ports ends + // Do not modify the ports beyond this line + + + // Ports of Axi Slave Bus Interface S00_AXI + input wire s00_axi_aclk, + input wire s00_axi_aresetn, + input wire [C_S00_AXI_ADDR_WIDTH-1 : 0] s00_axi_awaddr, + input wire [2 : 0] s00_axi_awprot, + input wire s00_axi_awvalid, + output wire s00_axi_awready, + input wire [C_S00_AXI_DATA_WIDTH-1 : 0] s00_axi_wdata, + input wire [(C_S00_AXI_DATA_WIDTH/8)-1 : 0] s00_axi_wstrb, + input wire s00_axi_wvalid, + output wire s00_axi_wready, + output wire [1 : 0] s00_axi_bresp, + output wire s00_axi_bvalid, + input wire s00_axi_bready, + input wire [C_S00_AXI_ADDR_WIDTH-1 : 0] s00_axi_araddr, + input wire [2 : 0] s00_axi_arprot, + input wire s00_axi_arvalid, + output wire s00_axi_arready, + output wire [C_S00_AXI_DATA_WIDTH-1 : 0] s00_axi_rdata, + output wire [1 : 0] s00_axi_rresp, + output wire s00_axi_rvalid, + input wire s00_axi_rready + ); +// Instantiation of Axi Bus Interface S00_AXI + ddr3_test_monitor_axi_v1_0_S00_AXI # ( + .C_S_AXI_DATA_WIDTH(C_S00_AXI_DATA_WIDTH), + .C_S_AXI_ADDR_WIDTH(C_S00_AXI_ADDR_WIDTH) + ) ddr3_test_monitor_axi_v1_0_S00_AXI_inst ( + .correct_read_data_counter(correct_read_data_counter), + .wrong_read_data_counter(wrong_read_data_counter), + .timer_counter(time_counter), + .injected_faults_counter(injected_faults_counter), + .S_AXI_ACLK(s00_axi_aclk), + .S_AXI_ARESETN(s00_axi_aresetn), + .S_AXI_AWADDR(s00_axi_awaddr), + .S_AXI_AWPROT(s00_axi_awprot), + .S_AXI_AWVALID(s00_axi_awvalid), + .S_AXI_AWREADY(s00_axi_awready), + .S_AXI_WDATA(s00_axi_wdata), + .S_AXI_WSTRB(s00_axi_wstrb), + .S_AXI_WVALID(s00_axi_wvalid), + .S_AXI_WREADY(s00_axi_wready), + .S_AXI_BRESP(s00_axi_bresp), + .S_AXI_BVALID(s00_axi_bvalid), + .S_AXI_BREADY(s00_axi_bready), + .S_AXI_ARADDR(s00_axi_araddr), + .S_AXI_ARPROT(s00_axi_arprot), + .S_AXI_ARVALID(s00_axi_arvalid), + .S_AXI_ARREADY(s00_axi_arready), + .S_AXI_RDATA(s00_axi_rdata), + .S_AXI_RRESP(s00_axi_rresp), + .S_AXI_RVALID(s00_axi_rvalid), + .S_AXI_RREADY(s00_axi_rready) + ); + + // Add user logic here + + // User logic ends + + endmodule diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/hdl/ddr3_test_monitor_axi_v1_0_S00_AXI.v b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/hdl/ddr3_test_monitor_axi_v1_0_S00_AXI.v new file mode 100644 index 0000000..73f30f7 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/hdl/ddr3_test_monitor_axi_v1_0_S00_AXI.v @@ -0,0 +1,715 @@ + +`timescale 1 ns / 1 ps + + module ddr3_test_monitor_axi_v1_0_S00_AXI # + ( + // Users to add parameters here + + // User parameters ends + // Do not modify the parameters beyond this line + + // Width of S_AXI data bus + parameter integer C_S_AXI_DATA_WIDTH = 32, + // Width of S_AXI address bus + parameter integer C_S_AXI_ADDR_WIDTH = 7 + ) + ( + // Users to add ports here + input wire[63:0] correct_read_data_counter, + input wire[63:0] wrong_read_data_counter, + input wire[63:0] timer_counter, + input wire[31:0] injected_faults_counter, + // User ports ends + // Do not modify the ports beyond this line + + // Global Clock Signal + input wire S_AXI_ACLK, + // Global Reset Signal. This Signal is Active LOW + input wire S_AXI_ARESETN, + // Write address (issued by master, acceped by Slave) + input wire [C_S_AXI_ADDR_WIDTH-1 : 0] S_AXI_AWADDR, + // Write channel Protection type. This signal indicates the + // privilege and security level of the transaction, and whether + // the transaction is a data access or an instruction access. + input wire [2 : 0] S_AXI_AWPROT, + // Write address valid. This signal indicates that the master signaling + // valid write address and control information. + input wire S_AXI_AWVALID, + // Write address ready. This signal indicates that the slave is ready + // to accept an address and associated control signals. + output wire S_AXI_AWREADY, + // Write data (issued by master, acceped by Slave) + input wire [C_S_AXI_DATA_WIDTH-1 : 0] S_AXI_WDATA, + // Write strobes. This signal indicates which byte lanes hold + // valid data. There is one write strobe bit for each eight + // bits of the write data bus. + input wire [(C_S_AXI_DATA_WIDTH/8)-1 : 0] S_AXI_WSTRB, + // Write valid. This signal indicates that valid write + // data and strobes are available. + input wire S_AXI_WVALID, + // Write ready. This signal indicates that the slave + // can accept the write data. + output wire S_AXI_WREADY, + // Write response. This signal indicates the status + // of the write transaction. + output wire [1 : 0] S_AXI_BRESP, + // Write response valid. This signal indicates that the channel + // is signaling a valid write response. + output wire S_AXI_BVALID, + // Response ready. This signal indicates that the master + // can accept a write response. + input wire S_AXI_BREADY, + // Read address (issued by master, acceped by Slave) + input wire [C_S_AXI_ADDR_WIDTH-1 : 0] S_AXI_ARADDR, + // Protection type. This signal indicates the privilege + // and security level of the transaction, and whether the + // transaction is a data access or an instruction access. + input wire [2 : 0] S_AXI_ARPROT, + // Read address valid. This signal indicates that the channel + // is signaling valid read address and control information. + input wire S_AXI_ARVALID, + // Read address ready. This signal indicates that the slave is + // ready to accept an address and associated control signals. + output wire S_AXI_ARREADY, + // Read data (issued by slave) + output wire [C_S_AXI_DATA_WIDTH-1 : 0] S_AXI_RDATA, + // Read response. This signal indicates the status of the + // read transfer. + output wire [1 : 0] S_AXI_RRESP, + // Read valid. This signal indicates that the channel is + // signaling the required read data. + output wire S_AXI_RVALID, + // Read ready. This signal indicates that the master can + // accept the read data and response information. + input wire S_AXI_RREADY + ); + + // AXI4LITE signals + reg [C_S_AXI_ADDR_WIDTH-1 : 0] axi_awaddr; + reg axi_awready; + reg axi_wready; + reg [1 : 0] axi_bresp; + reg axi_bvalid; + reg [C_S_AXI_ADDR_WIDTH-1 : 0] axi_araddr; + reg axi_arready; + reg [C_S_AXI_DATA_WIDTH-1 : 0] axi_rdata; + reg [1 : 0] axi_rresp; + reg axi_rvalid; + + // Example-specific design signals + // local parameter for addressing 32 bit / 64 bit C_S_AXI_DATA_WIDTH + // ADDR_LSB is used for addressing 32/64 bit registers/memories + // ADDR_LSB = 2 for 32 bits (n downto 2) + // ADDR_LSB = 3 for 64 bits (n downto 3) + localparam integer ADDR_LSB = (C_S_AXI_DATA_WIDTH/32) + 1; + localparam integer OPT_MEM_ADDR_BITS = 4; + //---------------------------------------------- + //-- Signals for user logic register space example + //------------------------------------------------ + //-- Number of Slave Registers 32 + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg0; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg1; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg2; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg3; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg4; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg5; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg6; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg7; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg8; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg9; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg10; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg11; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg12; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg13; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg14; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg15; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg16; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg17; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg18; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg19; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg20; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg21; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg22; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg23; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg24; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg25; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg26; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg27; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg28; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg29; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg30; + reg [C_S_AXI_DATA_WIDTH-1:0] slv_reg31; + wire slv_reg_rden; + wire slv_reg_wren; + reg [C_S_AXI_DATA_WIDTH-1:0] reg_data_out; + integer byte_index; + reg aw_en; + + // I/O Connections assignments + + assign S_AXI_AWREADY = axi_awready; + assign S_AXI_WREADY = axi_wready; + assign S_AXI_BRESP = axi_bresp; + assign S_AXI_BVALID = axi_bvalid; + assign S_AXI_ARREADY = axi_arready; + assign S_AXI_RDATA = axi_rdata; + assign S_AXI_RRESP = axi_rresp; + assign S_AXI_RVALID = axi_rvalid; + // Implement axi_awready generation + // axi_awready is asserted for one S_AXI_ACLK clock cycle when both + // S_AXI_AWVALID and S_AXI_WVALID are asserted. axi_awready is + // de-asserted when reset is low. + + always @( posedge S_AXI_ACLK ) + begin + if ( S_AXI_ARESETN == 1'b0 ) + begin + axi_awready <= 1'b0; + aw_en <= 1'b1; + end + else + begin + if (~axi_awready && S_AXI_AWVALID && S_AXI_WVALID && aw_en) + begin + // slave is ready to accept write address when + // there is a valid write address and write data + // on the write address and data bus. This design + // expects no outstanding transactions. + axi_awready <= 1'b1; + aw_en <= 1'b0; + end + else if (S_AXI_BREADY && axi_bvalid) + begin + aw_en <= 1'b1; + axi_awready <= 1'b0; + end + else + begin + axi_awready <= 1'b0; + end + end + end + + // Implement axi_awaddr latching + // This process is used to latch the address when both + // S_AXI_AWVALID and S_AXI_WVALID are valid. + + always @( posedge S_AXI_ACLK ) + begin + if ( S_AXI_ARESETN == 1'b0 ) + begin + axi_awaddr <= 0; + end + else + begin + if (~axi_awready && S_AXI_AWVALID && S_AXI_WVALID && aw_en) + begin + // Write Address latching + axi_awaddr <= S_AXI_AWADDR; + end + end + end + + // Implement axi_wready generation + // axi_wready is asserted for one S_AXI_ACLK clock cycle when both + // S_AXI_AWVALID and S_AXI_WVALID are asserted. axi_wready is + // de-asserted when reset is low. + + always @( posedge S_AXI_ACLK ) + begin + if ( S_AXI_ARESETN == 1'b0 ) + begin + axi_wready <= 1'b0; + end + else + begin + if (~axi_wready && S_AXI_WVALID && S_AXI_AWVALID && aw_en ) + begin + // slave is ready to accept write data when + // there is a valid write address and write data + // on the write address and data bus. This design + // expects no outstanding transactions. + axi_wready <= 1'b1; + end + else + begin + axi_wready <= 1'b0; + end + end + end + + // Implement memory mapped register select and write logic generation + // The write data is accepted and written to memory mapped registers when + // axi_awready, S_AXI_WVALID, axi_wready and S_AXI_WVALID are asserted. Write strobes are used to + // select byte enables of slave registers while writing. + // These registers are cleared when reset (active low) is applied. + // Slave register write enable is asserted when valid address and data are available + // and the slave is ready to accept the write address and write data. + assign slv_reg_wren = axi_wready && S_AXI_WVALID && axi_awready && S_AXI_AWVALID; + + always @( posedge S_AXI_ACLK ) + begin + if ( S_AXI_ARESETN == 1'b0 ) + begin + slv_reg0 <= 0; + slv_reg1 <= 0; + slv_reg2 <= 0; + slv_reg3 <= 0; + slv_reg4 <= 0; + slv_reg5 <= 0; + slv_reg6 <= 0; + slv_reg7 <= 0; + slv_reg8 <= 0; + slv_reg9 <= 0; + slv_reg10 <= 0; + slv_reg11 <= 0; + slv_reg12 <= 0; + slv_reg13 <= 0; + slv_reg14 <= 0; + slv_reg15 <= 0; + slv_reg16 <= 0; + slv_reg17 <= 0; + slv_reg18 <= 0; + slv_reg19 <= 0; + slv_reg20 <= 0; + slv_reg21 <= 0; + slv_reg22 <= 0; + slv_reg23 <= 0; + slv_reg24 <= 0; + slv_reg25 <= 0; + slv_reg26 <= 0; + slv_reg27 <= 0; + slv_reg28 <= 0; + slv_reg29 <= 0; + slv_reg30 <= 0; + slv_reg31 <= 0; + end + else begin + if (slv_reg_wren) + begin + case ( axi_awaddr[ADDR_LSB+OPT_MEM_ADDR_BITS:ADDR_LSB] ) + 5'h00: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 0 + slv_reg0[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h01: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 1 + slv_reg1[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h02: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 2 + slv_reg2[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h03: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 3 + slv_reg3[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h04: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 4 + slv_reg4[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h05: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 5 + slv_reg5[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h06: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 6 + slv_reg6[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h07: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 7 + slv_reg7[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h08: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 8 + slv_reg8[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h09: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 9 + slv_reg9[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h0A: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 10 + slv_reg10[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h0B: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 11 + slv_reg11[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h0C: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 12 + slv_reg12[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h0D: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 13 + slv_reg13[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h0E: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 14 + slv_reg14[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h0F: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 15 + slv_reg15[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h10: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 16 + slv_reg16[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h11: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 17 + slv_reg17[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h12: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 18 + slv_reg18[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h13: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 19 + slv_reg19[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h14: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 20 + slv_reg20[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h15: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 21 + slv_reg21[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h16: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 22 + slv_reg22[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h17: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 23 + slv_reg23[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h18: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 24 + slv_reg24[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h19: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 25 + slv_reg25[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h1A: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 26 + slv_reg26[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h1B: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 27 + slv_reg27[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h1C: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 28 + slv_reg28[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h1D: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 29 + slv_reg29[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h1E: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 30 + slv_reg30[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + 5'h1F: + for ( byte_index = 0; byte_index <= (C_S_AXI_DATA_WIDTH/8)-1; byte_index = byte_index+1 ) + if ( S_AXI_WSTRB[byte_index] == 1 ) begin + // Respective byte enables are asserted as per write strobes + // Slave register 31 + slv_reg31[(byte_index*8) +: 8] <= S_AXI_WDATA[(byte_index*8) +: 8]; + end + default : begin + slv_reg0 <= slv_reg0; + slv_reg1 <= slv_reg1; + slv_reg2 <= slv_reg2; + slv_reg3 <= slv_reg3; + slv_reg4 <= slv_reg4; + slv_reg5 <= slv_reg5; + slv_reg6 <= slv_reg6; + slv_reg7 <= slv_reg7; + slv_reg8 <= slv_reg8; + slv_reg9 <= slv_reg9; + slv_reg10 <= slv_reg10; + slv_reg11 <= slv_reg11; + slv_reg12 <= slv_reg12; + slv_reg13 <= slv_reg13; + slv_reg14 <= slv_reg14; + slv_reg15 <= slv_reg15; + slv_reg16 <= slv_reg16; + slv_reg17 <= slv_reg17; + slv_reg18 <= slv_reg18; + slv_reg19 <= slv_reg19; + slv_reg20 <= slv_reg20; + slv_reg21 <= slv_reg21; + slv_reg22 <= slv_reg22; + slv_reg23 <= slv_reg23; + slv_reg24 <= slv_reg24; + slv_reg25 <= slv_reg25; + slv_reg26 <= slv_reg26; + slv_reg27 <= slv_reg27; + slv_reg28 <= slv_reg28; + slv_reg29 <= slv_reg29; + slv_reg30 <= slv_reg30; + slv_reg31 <= slv_reg31; + end + endcase + end + end + end + + // Implement write response logic generation + // The write response and response valid signals are asserted by the slave + // when axi_wready, S_AXI_WVALID, axi_wready and S_AXI_WVALID are asserted. + // This marks the acceptance of address and indicates the status of + // write transaction. + + always @( posedge S_AXI_ACLK ) + begin + if ( S_AXI_ARESETN == 1'b0 ) + begin + axi_bvalid <= 0; + axi_bresp <= 2'b0; + end + else + begin + if (axi_awready && S_AXI_AWVALID && ~axi_bvalid && axi_wready && S_AXI_WVALID) + begin + // indicates a valid write response is available + axi_bvalid <= 1'b1; + axi_bresp <= 2'b0; // 'OKAY' response + end // work error responses in future + else + begin + if (S_AXI_BREADY && axi_bvalid) + //check if bready is asserted while bvalid is high) + //(there is a possibility that bready is always asserted high) + begin + axi_bvalid <= 1'b0; + end + end + end + end + + // Implement axi_arready generation + // axi_arready is asserted for one S_AXI_ACLK clock cycle when + // S_AXI_ARVALID is asserted. axi_awready is + // de-asserted when reset (active low) is asserted. + // The read address is also latched when S_AXI_ARVALID is + // asserted. axi_araddr is reset to zero on reset assertion. + + always @( posedge S_AXI_ACLK ) + begin + if ( S_AXI_ARESETN == 1'b0 ) + begin + axi_arready <= 1'b0; + axi_araddr <= 32'b0; + end + else + begin + if (~axi_arready && S_AXI_ARVALID) + begin + // indicates that the slave has acceped the valid read address + axi_arready <= 1'b1; + // Read address latching + axi_araddr <= S_AXI_ARADDR; + end + else + begin + axi_arready <= 1'b0; + end + end + end + + // Implement axi_arvalid generation + // axi_rvalid is asserted for one S_AXI_ACLK clock cycle when both + // S_AXI_ARVALID and axi_arready are asserted. The slave registers + // data are available on the axi_rdata bus at this instance. The + // assertion of axi_rvalid marks the validity of read data on the + // bus and axi_rresp indicates the status of read transaction.axi_rvalid + // is deasserted on reset (active low). axi_rresp and axi_rdata are + // cleared to zero on reset (active low). + always @( posedge S_AXI_ACLK ) + begin + if ( S_AXI_ARESETN == 1'b0 ) + begin + axi_rvalid <= 0; + axi_rresp <= 0; + end + else + begin + if (axi_arready && S_AXI_ARVALID && ~axi_rvalid) + begin + // Valid read data is available at the read data bus + axi_rvalid <= 1'b1; + axi_rresp <= 2'b0; // 'OKAY' response + end + else if (axi_rvalid && S_AXI_RREADY) + begin + // Read data is accepted by the master + axi_rvalid <= 1'b0; + end + end + end + + // Implement memory mapped register select and read logic generation + // Slave register read enable is asserted when valid address is available + // and the slave is ready to accept the read address. + assign slv_reg_rden = axi_arready & S_AXI_ARVALID & ~axi_rvalid; + always @(*) + begin + // Address decoding for reading registers + case ( axi_araddr[ADDR_LSB+OPT_MEM_ADDR_BITS:ADDR_LSB] ) + 5'h00 : reg_data_out <= correct_read_data_counter[31:0]; + 5'h01 : reg_data_out <= correct_read_data_counter[63:32]; + 5'h02 : reg_data_out <= wrong_read_data_counter[31:0]; + 5'h03 : reg_data_out <= wrong_read_data_counter[63:32]; + 5'h04 : reg_data_out <= timer_counter[31:0]; + 5'h05 : reg_data_out <= timer_counter[63:32]; + 5'h06 : reg_data_out <= injected_faults_counter[31:0]; + 5'h07 : reg_data_out <= slv_reg7; + 5'h08 : reg_data_out <= slv_reg8; + 5'h09 : reg_data_out <= slv_reg9; + 5'h0A : reg_data_out <= slv_reg10; + 5'h0B : reg_data_out <= slv_reg11; + 5'h0C : reg_data_out <= slv_reg12; + 5'h0D : reg_data_out <= slv_reg13; + 5'h0E : reg_data_out <= slv_reg14; + 5'h0F : reg_data_out <= slv_reg15; + 5'h10 : reg_data_out <= slv_reg16; + 5'h11 : reg_data_out <= slv_reg17; + 5'h12 : reg_data_out <= slv_reg18; + 5'h13 : reg_data_out <= slv_reg19; + 5'h14 : reg_data_out <= slv_reg20; + 5'h15 : reg_data_out <= slv_reg21; + 5'h16 : reg_data_out <= slv_reg22; + 5'h17 : reg_data_out <= slv_reg23; + 5'h18 : reg_data_out <= slv_reg24; + 5'h19 : reg_data_out <= slv_reg25; + 5'h1A : reg_data_out <= slv_reg26; + 5'h1B : reg_data_out <= slv_reg27; + 5'h1C : reg_data_out <= slv_reg28; + 5'h1D : reg_data_out <= slv_reg29; + 5'h1E : reg_data_out <= slv_reg30; + 5'h1F : reg_data_out <= slv_reg31; + default : reg_data_out <= 0; + endcase + end + + // Output register or memory read data + always @( posedge S_AXI_ACLK ) + begin + if ( S_AXI_ARESETN == 1'b0 ) + begin + axi_rdata <= 0; + end + else + begin + // When there is a valid read address (S_AXI_ARVALID) with + // acceptance of read address by the slave (axi_arready), + // output the read dada + if (slv_reg_rden) + begin + axi_rdata <= reg_data_out; // register read data + end + end + end + + // Add user logic here + + // User logic ends + + endmodule diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/xgui/ddr3_test_monitor_axi_v1_0.tcl b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/xgui/ddr3_test_monitor_axi_v1_0.tcl new file mode 100644 index 0000000..7f70db3 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_monitor_axi_1.0/xgui/ddr3_test_monitor_axi_v1_0.tcl @@ -0,0 +1,60 @@ +# Definitional proc to organize widgets for parameters. +proc init_gui { IPINST } { + ipgui::add_param $IPINST -name "Component_Name" + #Adding Page + set Page_0 [ipgui::add_page $IPINST -name "Page 0"] + ipgui::add_param $IPINST -name "C_S00_AXI_DATA_WIDTH" -parent ${Page_0} -widget comboBox + ipgui::add_param $IPINST -name "C_S00_AXI_ADDR_WIDTH" -parent ${Page_0} + ipgui::add_param $IPINST -name "C_S00_AXI_BASEADDR" -parent ${Page_0} + ipgui::add_param $IPINST -name "C_S00_AXI_HIGHADDR" -parent ${Page_0} + + +} + +proc update_PARAM_VALUE.C_S00_AXI_DATA_WIDTH { PARAM_VALUE.C_S00_AXI_DATA_WIDTH } { + # Procedure called to update C_S00_AXI_DATA_WIDTH when any of the dependent parameters in the arguments change +} + +proc validate_PARAM_VALUE.C_S00_AXI_DATA_WIDTH { PARAM_VALUE.C_S00_AXI_DATA_WIDTH } { + # Procedure called to validate C_S00_AXI_DATA_WIDTH + return true +} + +proc update_PARAM_VALUE.C_S00_AXI_ADDR_WIDTH { PARAM_VALUE.C_S00_AXI_ADDR_WIDTH } { + # Procedure called to update C_S00_AXI_ADDR_WIDTH when any of the dependent parameters in the arguments change +} + +proc validate_PARAM_VALUE.C_S00_AXI_ADDR_WIDTH { PARAM_VALUE.C_S00_AXI_ADDR_WIDTH } { + # Procedure called to validate C_S00_AXI_ADDR_WIDTH + return true +} + +proc update_PARAM_VALUE.C_S00_AXI_BASEADDR { PARAM_VALUE.C_S00_AXI_BASEADDR } { + # Procedure called to update C_S00_AXI_BASEADDR when any of the dependent parameters in the arguments change +} + +proc validate_PARAM_VALUE.C_S00_AXI_BASEADDR { PARAM_VALUE.C_S00_AXI_BASEADDR } { + # Procedure called to validate C_S00_AXI_BASEADDR + return true +} + +proc update_PARAM_VALUE.C_S00_AXI_HIGHADDR { PARAM_VALUE.C_S00_AXI_HIGHADDR } { + # Procedure called to update C_S00_AXI_HIGHADDR when any of the dependent parameters in the arguments change +} + +proc validate_PARAM_VALUE.C_S00_AXI_HIGHADDR { PARAM_VALUE.C_S00_AXI_HIGHADDR } { + # Procedure called to validate C_S00_AXI_HIGHADDR + return true +} + + +proc update_MODELPARAM_VALUE.C_S00_AXI_DATA_WIDTH { MODELPARAM_VALUE.C_S00_AXI_DATA_WIDTH PARAM_VALUE.C_S00_AXI_DATA_WIDTH } { + # Procedure called to set VHDL generic/Verilog parameter value(s) based on TCL parameter value + set_property value [get_property value ${PARAM_VALUE.C_S00_AXI_DATA_WIDTH}] ${MODELPARAM_VALUE.C_S00_AXI_DATA_WIDTH} +} + +proc update_MODELPARAM_VALUE.C_S00_AXI_ADDR_WIDTH { MODELPARAM_VALUE.C_S00_AXI_ADDR_WIDTH PARAM_VALUE.C_S00_AXI_ADDR_WIDTH } { + # Procedure called to set VHDL generic/Verilog parameter value(s) based on TCL parameter value + set_property value [get_property value ${PARAM_VALUE.C_S00_AXI_ADDR_WIDTH}] ${MODELPARAM_VALUE.C_S00_AXI_ADDR_WIDTH} +} + diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_top.v b/example_demo/enclustra_kx2_st1/ddr3_test_top.v new file mode 100644 index 0000000..81fe20c --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_top.v @@ -0,0 +1,220 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Filename: ddr3_test_top.v +// Project: Top level module instantiating the ddr3 test and UberDDR3. +// +// Engineer: Angelo C. Jacobo +// +//////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023-2025 Angelo Jacobo +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +//////////////////////////////////////////////////////////////////////////////// + +`timescale 1ns / 1ps + + module enclustra_ddr3_test + ( + input wire i_clk200_p, i_clk200_n, + input wire i_rst_n, + // DDR3 I/O Interface + output wire ddr3_clk_p, ddr3_clk_n, + output wire ddr3_reset_n, + output wire ddr3_cke, + output wire ddr3_cs_n, + output wire ddr3_ras_n, + output wire ddr3_cas_n, + output wire ddr3_we_n, + output wire[15-1:0] ddr3_addr, + output wire[3-1:0] ddr3_ba, + inout wire[64-1:0] ddr3_dq, + inout wire[8-1:0] ddr3_dqs_p, ddr3_dqs_n, + output wire[8-1:0] ddr3_dm, + output wire ddr3_odt, + // UART line + input wire rx, + output wire tx, + //Debug LEDs + output wire[3:0] led, + // Button for fault injection + input wire btn + ); + + + localparam CONTROLLER_CLK_PERIOD = 5_000, // ps, clock period of the controller interface + DDR3_CLK_PERIOD = 1_250, // ps, clock period of the DDR3 RAM device (must be 1/4 of the CONTROLLER_CLK_PERIOD) + ROW_BITS = 15, // Width of row address + COL_BITS = 10, // Width of column address + BA_BITS = 3, // Width of bank address + BYTE_LANES = 8, // Number of DDR3 modules to be controlled + AUX_WIDTH = 16, // Width of aux line (must be >= 4) + BIST_MODE = 0; // Don't perform BIST, go straight to external DDR3 test + + parameter MICRON_SIM = 0, // Enable faster simulation for Micron DDR3 model + ODELAY_SUPPORTED = 1, // Set to 1 when ODELAYE2 is supported + DATA_MASK = 1; // enable test on datamask + + + localparam WB_ADDR_BITS = ROW_BITS + COL_BITS + BA_BITS - 3, + WB_DATA_BITS = 8*BYTE_LANES*8, + WB_SEL_BITS = WB_DATA_BITS / 8; + + wire sys_clk_200MHz; + wire i_controller_clk, i_ddr3_clk, i_ref_clk,i_clk100; + wire clk_locked; + wire timer_pulse, wrong_data_counter_non_zero; + + // Wishbone output signals + wire o_wb_cyc; // Bus cycle active (1 = normal operation, 0 = cancel all ongoing transactions) + wire o_wb_stb; // Request a transfer + wire o_wb_we; // Write-enable (1 = write, 0 = read) + wire [WB_ADDR_BITS - 1:0] o_wb_addr; // Burst-addressable {row, bank, col} + wire [WB_DATA_BITS - 1:0] o_wb_data; // Write data (depends on controller width) + wire [WB_SEL_BITS - 1:0] o_wb_sel; // Byte strobe for write (1 = write the byte) + wire [AUX_WIDTH - 1:0] o_aux; // AXI-interface compatibility (given upon strobe) + + // Wishbone input signals + wire i_wb_stall; // 1 = Busy, cannot accept requests + wire i_wb_ack; // 1 = Read/write request completed + wire [WB_DATA_BITS - 1:0] i_wb_data; // Read data + wire [AUX_WIDTH - 1:0] i_aux; // AXI-interface compatibility (given upon strobe) + (* mark_debug = "true" *) wire calib_complete; + + assign led[0] = !calib_complete; //light up if at DONE_CALIBRATE + assign led[1] = !wrong_data_counter_non_zero; //light up if at there is wrong data + assign led[2] = !timer_pulse; //light up at timer pulse + assign led[3] = !timer_pulse; //light up at timer pulse + + IBUFDS sys_clk_ibufgds + ( + .O(sys_clk_200MHz), + .I(i_clk200_p), + .IB(i_clk200_n) + ); + + clk_wiz_0 clk_wiz_inst + ( + // Clock out ports + .controller_clk(i_controller_clk), + .ddr3_clk(i_ddr3_clk), + .ref200_clk(i_ref_clk), + .clk100(i_clk100), + // Status and control signals + .reset(!i_rst_n), + .locked(clk_locked), + // Clock in ports + .clk_in1(sys_clk_200MHz) + ); + + // DDR3 Controller + ddr3_top #( + .CONTROLLER_CLK_PERIOD(CONTROLLER_CLK_PERIOD), //ps, clock period of the controller interface + .DDR3_CLK_PERIOD(DDR3_CLK_PERIOD), //ps, clock period of the DDR3 RAM device (must be 1/4 of the CONTROLLER_CLK_PERIOD) + .ROW_BITS(ROW_BITS), //width of row address + .COL_BITS(COL_BITS), //width of column address + .BA_BITS(BA_BITS), //width of bank address + .BYTE_LANES(BYTE_LANES), //number of DDR3 modules to be controlled + .AUX_WIDTH(AUX_WIDTH), //width of aux line (must be >= 4) + .MICRON_SIM(MICRON_SIM), //enable faster simulation for micron ddr3 model (shorten POWER_ON_RESET_HIGH and INITIAL_CKE_LOW) + .ODELAY_SUPPORTED(ODELAY_SUPPORTED), //set to 1 when ODELAYE2 is supported + .BIST_MODE(BIST_MODE) + ) ddr3_top_inst + ( + //clock and reset + .i_controller_clk(i_controller_clk), + .i_ddr3_clk(i_ddr3_clk), //i_controller_clk has period of CONTROLLER_CLK_PERIOD, i_ddr3_clk has period of DDR3_CLK_PERIOD + .i_ref_clk(i_ref_clk), + .i_ddr3_clk_90(), + .i_rst_n(i_rst_n && clk_locked), + // Wishbone inputs + .i_wb_cyc(o_wb_cyc), //bus cycle active (1 = normal operation, 0 = all ongoing transaction are to be cancelled) + .i_wb_stb(o_wb_stb), //request a transfer + .i_wb_we(o_wb_we), //write-enable (1 = write, 0 = read) + .i_wb_addr(o_wb_addr), //burst-addressable {row,bank,col} + .i_wb_data(o_wb_data), //write data, for a 4:1 controller data width is 8 times the number of pins on the device + .i_wb_sel(o_wb_sel), //byte strobe for write (1 = write the byte) + .i_aux(o_aux), //for AXI-interface compatibility (given upon strobe) + // Wishbone outputs + .o_wb_stall(i_wb_stall), //1 = busy, cannot accept requests + .o_wb_ack(i_wb_ack), //1 = read/write request has completed + .o_wb_data(i_wb_data), //read data, for a 4:1 controller data width is 8 times the number of pins on the device + .o_aux(i_aux), + // PHY Interface (to be added later) + // DDR3 I/O Interface + .o_ddr3_clk_p(ddr3_clk_p), + .o_ddr3_clk_n(ddr3_clk_n), + .o_ddr3_reset_n(ddr3_reset_n), + .o_ddr3_cke(ddr3_cke), // CKE + .o_ddr3_cs_n(ddr3_cs_n), // chip select signal (controls rank 1 only) + .o_ddr3_ras_n(ddr3_ras_n), // RAS# + .o_ddr3_cas_n(ddr3_cas_n), // CAS# + .o_ddr3_we_n(ddr3_we_n), // WE# + .o_ddr3_addr(ddr3_addr), + .o_ddr3_ba_addr(ddr3_ba), + .io_ddr3_dq(ddr3_dq), + .io_ddr3_dqs(ddr3_dqs_p), + .io_ddr3_dqs_n(ddr3_dqs_n), + .o_ddr3_dm(ddr3_dm), + .o_ddr3_odt(ddr3_odt), // on-die termination + // debug + .o_calib_complete(calib_complete) + ); + + ddr3_test #( + .WB_ADDR_BITS(WB_ADDR_BITS), + .WB_DATA_BITS(WB_DATA_BITS), + .WB_SEL_BITS(WB_SEL_BITS), + .AUX_WIDTH(AUX_WIDTH), + .DATA_MASK(DATA_MASK), + .MICRON_SIM(MICRON_SIM) + ) ddr3_test_inst + ( + .i_clk(i_controller_clk), + .i_clk100(i_clk100), + .i_rst_n(i_rst_n), + // + // Wishbone inputs + .o_wb_cyc(o_wb_cyc), //bus cycle active (1 = normal operation, 0 = all ongoing transaction are to be cancelled) + .o_wb_stb(o_wb_stb), //request a transfer + .o_wb_we(o_wb_we), //write-enable (1 = write, 0 = read) + .o_wb_addr(o_wb_addr), //burst-addressable {row,bank,col} + .o_wb_data(o_wb_data), //write data, for a 4:1 controller data width is 8 times the number of pins on the device + .o_wb_sel(o_wb_sel), //byte strobe for write (1 = write the byte) + .o_aux(o_aux), //for AXI-interface compatibility (given upon strobe) + // + // Wishbone outputs + .i_wb_stall(i_wb_stall), //1 = busy, cannot accept requests + .i_wb_ack(i_wb_ack), //1 = read/write request has completed + .i_wb_err(0), //1 = Error due to ECC double bit error (fixed to 0 if WB_ERROR = 0) + .i_wb_data(i_wb_data), //read data, for a 4:1 controller data width is 8 times the number of pins on the device + .i_aux(i_aux), //for AXI-interface compatibility (given upon strobe) + // + // Done Calibration pin + .i_calib_complete(calib_complete), + // + // UART line + .rx(rx), + .tx(tx), + // Button for fault injection + .btn(!btn), + // Debug + .timer_pulse(timer_pulse), + .wrong_data_counter_non_zero(wrong_data_counter_non_zero) + ); + + +endmodule + diff --git a/example_demo/enclustra_kx2_st1/ddr3_test_top_tb.v b/example_demo/enclustra_kx2_st1/ddr3_test_top_tb.v new file mode 100644 index 0000000..878c837 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/ddr3_test_top_tb.v @@ -0,0 +1,113 @@ +//////////////////////////////////////////////////////////////////////////////// +// +// Filename: ddr3_test_top.v +// Project: Testbench for ddr3_test_top.v +// +// Engineer: Angelo C. Jacobo +// +//////////////////////////////////////////////////////////////////////////////// +// +// Copyright (C) 2023-2025 Angelo Jacobo +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . +// +//////////////////////////////////////////////////////////////////////////////// + +`timescale 1ps / 1ps + +module ddr3_test_top_tb; + // PHY Interface to DDR3 Device + wire[1:0] ddr3_cke; // CKE + wire[1:0] ddr3_cs_n; // chip select signal + wire[1:0] ddr3_odt; // on-die termination + wire ddr3_ras_n; // RAS# + wire ddr3_cas_n; // CAS# + wire ddr3_we_n; // WE# + wire ddr3_reset_n; + wire[$bits(DUT.ddr3_addr)-1:0] ddr3_addr; + wire[$bits(DUT.ddr3_ba)-1:0] ddr3_ba; + wire[$bits(DUT.ddr3_dm)-1:0] ddr3_dm; + wire[$bits(DUT.ddr3_dq)-1:0] ddr3_dq; + wire[$bits(DUT.ddr3_dqs_p)-1:0] ddr3_dqs_p; + wire[$bits(DUT.ddr3_dqs_n)-1:0] ddr3_dqs_n; + wire[1:0] ddr3_clk_p, ddr3_clk_n; + // clocks and reset + reg i_clk200_p; + reg i_rst_n; + initial begin + i_clk200_p = 0; + i_rst_n = 0; + #1000; + i_rst_n = 1; + end + always #2_500 i_clk200_p = !i_clk200_p; // 200MHz + + + enclustra_ddr3_test #( + .MICRON_SIM(1), + .ODELAY_SUPPORTED(1), + .DATA_MASK(1) + ) + DUT ( + .i_clk200_p(i_clk200_p), + .i_clk200_n(!i_clk200_p), + .i_rst_n(i_rst_n), + // DDR3 I/O Interface + .ddr3_clk_p(ddr3_clk_p), + .ddr3_clk_n(ddr3_clk_n), + .ddr3_reset_n(ddr3_reset_n), + .ddr3_cke(ddr3_cke), + .ddr3_cs_n(ddr3_cs_n), + .ddr3_ras_n(ddr3_ras_n), + .ddr3_cas_n(ddr3_cas_n), + .ddr3_we_n(ddr3_we_n), + .ddr3_addr(ddr3_addr), + .ddr3_ba(ddr3_ba), + .ddr3_dq(ddr3_dq), + .ddr3_dqs_p(ddr3_dqs_p), + .ddr3_dqs_n(ddr3_dqs_n), + .ddr3_dm(ddr3_dm), + .ddr3_odt(ddr3_odt), + // UART line + .rx(0), + .tx(), + // Debug LEDs + .led() + ); + + // DDR3 Device + ddr3_module ddr3_module( + .reset_n(ddr3_reset_n), + .ck(ddr3_clk_p), //[1:0] + .ck_n(ddr3_clk_n), //[1:0] + .cke(ddr3_cke), //[1:0] + .s_n(ddr3_cs_n), //[1:0] + .ras_n(ddr3_ras_n), + .cas_n(ddr3_cas_n), + .we_n(ddr3_we_n), + .ba(ddr3_ba), + .addr({0,ddr3_addr}), + .odt(ddr3_odt), //[1:0] + .dqs({ddr3_dm[0], ddr3_dm,ddr3_dm[0],ddr3_dqs_p}), //ddr3_module uses last 8 MSB [16:9] as datamask + .dqs_n(ddr3_dqs_n), + .dq(ddr3_dq) + ); + assign ddr3_cke[1]=0, + ddr3_cs_n[1]=1, + ddr3_odt[1]=0, + ddr3_clk_p[1]=0, + ddr3_clk_n[1]=0; + +endmodule + diff --git a/example_demo/enclustra_kx2_st1/enclustra_ddr3 copy.xdc b/example_demo/enclustra_kx2_st1/enclustra_ddr3 copy.xdc deleted file mode 100755 index 9da3b20..0000000 --- a/example_demo/enclustra_kx2_st1/enclustra_ddr3 copy.xdc +++ /dev/null @@ -1,210 +0,0 @@ -################################################################################ -################################################################################ -set_property CFGBVS GND [current_design] -set_property CONFIG_VOLTAGE 1.8 [current_design] -set_property BITSTREAM.CONFIG.CONFIGRATE 22 [current_design] -set_property BITSTREAM.CONFIG.OVERTEMPPOWERDOWN ENABLE [current_design] -set_property BITSTREAM.CONFIG.UNUSEDPIN PULLNONE [current_design] - -# set_property -dict {PACKAGE_PIN AD24 IOSTANDARD LVCMOS18 } [get_ports {CLK_100_CAL}] -# set_property DCI_CASCADE {32 33} [get_iobanks 34] -## For a 1.5V memory, the appropriate VREF voltage is half of 1.5, or 0.75 Volts -## Of the DDR3 bank(s), only bank 33 needs the INTERNAL_VREF. The other DDR3 -## banks are explicitly connected to an external VREF signal. However, bank -## 33s IOs are overloaded--there was no room for the VREF. Hence, to spare -## two pins, bank 33 uses an internal voltage reference. Sadly, the same -## problem plays out in banks 12-16 as well. -# set_property INTERNAL_VREF 0.750 [get_iobanks 33] -# ## Other IO banks have internal VREFs as well, those these aren't as critical -# set_property INTERNAL_VREF 0.90 [get_iobanks 12] -# set_property INTERNAL_VREF 0.60 [get_iobanks 13] -# set_property INTERNAL_VREF 0.90 [get_iobanks 14] -# set_property INTERNAL_VREF 0.90 [get_iobanks 15] -# set_property INTERNAL_VREF 0.90 [get_iobanks 16] - -## Clocks -# 100MHz single ended input clock -set_property -dict {PACKAGE_PIN AA4 IOSTANDARD SSTL15} [get_ports i_clk] -create_clock -period 10.000 -name sys_clk_pin -waveform {0.000 5.000} -add [get_ports i_clk] - -# Baseboard LEDs -# set_property -dict {SLEW SLOW PACKAGE_PIN F22 IOSTANDARD LVCMOS18 } [get_ports { o_led_status[4] }] # GPIO0_LED0_N -set_property -dict {PACKAGE_PIN E23 IOSTANDARD LVCMOS18} [get_ports {led[0]}] -set_property -dict {PACKAGE_PIN K25 IOSTANDARD LVCMOS12} [get_ports {led[1]}] -set_property -dict {PACKAGE_PIN K26 IOSTANDARD LVCMOS12} [get_ports {led[2]}] - -## UART -## {{{ -set_property -dict {PACKAGE_PIN B20 IOSTANDARD LVCMOS18 } [get_ports {rx}] -set_property -dict {PACKAGE_PIN A20 IOSTANDARD LVCMOS18 } [get_ports {tx}] -## }}} - -## Buttons -## {{{ - set_property -dict {PACKAGE_PIN C22 IOSTANDARD LVCMOS18 } [get_ports {i_rst_n}] - -## DDR3 MEMORY -set_property -dict {PACKAGE_PIN AB7 IOSTANDARD LVCMOS15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_reset_n}] - -set_property -dict {PACKAGE_PIN AB12 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_clk_p}] -set_property -dict {PACKAGE_PIN AC12 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_clk_n}] -set_property -dict {PACKAGE_PIN AA13 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_cke}] -## set_property -dict {SLEW SLOW PACKAGE_PIN AA3 IOSTANDARD LVCMOS15 } [get_ports {o_ddr3_vsel}] -set_property -dict {PACKAGE_PIN Y12 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_cs_n}] -set_property -dict {PACKAGE_PIN AE13 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_ras_n}] -set_property -dict {PACKAGE_PIN AE12 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_cas_n}] -set_property -dict {PACKAGE_PIN AA12 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_we_n}] -set_property -dict {PACKAGE_PIN AD13 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_odt}] - - -## Address lines -set_property -dict {PACKAGE_PIN AE11 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[0]}] -set_property -dict {PACKAGE_PIN AF9 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[1]}] -set_property -dict {PACKAGE_PIN AD10 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[2]}] -set_property -dict {PACKAGE_PIN AB10 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[3]}] -set_property -dict {PACKAGE_PIN AA9 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[4]}] -set_property -dict {PACKAGE_PIN AB9 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[5]}] -set_property -dict {PACKAGE_PIN AA8 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[6]}] -set_property -dict {PACKAGE_PIN AC8 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[7]}] -set_property -dict {PACKAGE_PIN AA7 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[8]}] -set_property -dict {PACKAGE_PIN AE8 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[9]}] - -set_property -dict {PACKAGE_PIN AF10 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[10]}] -set_property -dict {PACKAGE_PIN AD8 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[11]}] -set_property -dict {PACKAGE_PIN AE10 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[12]}] -set_property -dict {PACKAGE_PIN AF8 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[13]}] -set_property -dict {PACKAGE_PIN AC7 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_addr[14]}] - -set_property -dict {PACKAGE_PIN AD11 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_ba[0]}] -set_property -dict {PACKAGE_PIN AA10 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_ba[1]}] -set_property -dict {PACKAGE_PIN AF12 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_ba[2]}] - - -## Byte lane #0 -set_property -dict {PACKAGE_PIN AA2 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[0]}] -set_property -dict {PACKAGE_PIN Y2 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[1]}] -set_property -dict {PACKAGE_PIN AB2 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[2]}] -set_property -dict {PACKAGE_PIN V1 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[3]}] -set_property -dict {PACKAGE_PIN Y1 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[4]}] -set_property -dict {PACKAGE_PIN W1 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[5]}] -set_property -dict {PACKAGE_PIN AC2 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[6]}] -set_property -dict {PACKAGE_PIN V2 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[7]}] - -set_property -dict {PACKAGE_PIN Y3 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_dm[0]}] - -set_property -dict {PACKAGE_PIN AB1 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_p[0]}] -set_property -dict {PACKAGE_PIN AC1 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_n[0]}] - - -## Byte lane #1 -set_property -dict {PACKAGE_PIN W3 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[8]}] -set_property -dict {PACKAGE_PIN V3 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[9]}] -set_property -dict {PACKAGE_PIN U1 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[10]}] -set_property -dict {PACKAGE_PIN U7 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[11]}] -set_property -dict {PACKAGE_PIN U6 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[12]}] -set_property -dict {PACKAGE_PIN V4 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[13]}] -set_property -dict {PACKAGE_PIN V6 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[14]}] -set_property -dict {PACKAGE_PIN U2 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[15]}] - -set_property -dict {PACKAGE_PIN U5 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_dm[1]}] - -set_property -dict {PACKAGE_PIN W6 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_p[1]}] -set_property -dict {PACKAGE_PIN W5 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_n[1]}] - - -## Byte lane #2 -set_property -dict {PACKAGE_PIN AE3 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[16]}] -set_property -dict {PACKAGE_PIN AE6 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[17]}] -set_property -dict {PACKAGE_PIN AF3 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[18]}] -set_property -dict {PACKAGE_PIN AD1 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[19]}] -set_property -dict {PACKAGE_PIN AE1 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[20]}] -set_property -dict {PACKAGE_PIN AE2 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[21]}] -set_property -dict {PACKAGE_PIN AF2 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[22]}] -set_property -dict {PACKAGE_PIN AE5 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[23]}] - -set_property -dict {PACKAGE_PIN AD4 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_dm[2]}] - -set_property -dict {PACKAGE_PIN AF5 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_p[2]}] -set_property -dict {PACKAGE_PIN AF4 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_n[2]}] - - -## Byte lane #3 -set_property -dict {PACKAGE_PIN AD5 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[24]}] -set_property -dict {PACKAGE_PIN Y5 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[25]}] -set_property -dict {PACKAGE_PIN AC6 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[26]}] -set_property -dict {PACKAGE_PIN Y6 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[27]}] -set_property -dict {PACKAGE_PIN AB4 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[28]}] -set_property -dict {PACKAGE_PIN AD6 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[29]}] -set_property -dict {PACKAGE_PIN AB6 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[30]}] -set_property -dict {PACKAGE_PIN AC3 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[31]}] - -set_property -dict {PACKAGE_PIN AC4 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_dm[3]}] - -set_property -dict {PACKAGE_PIN AA5 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_p[3]}] -set_property -dict {PACKAGE_PIN AB5 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_n[3]}] - - -## Byte lane #4 -set_property -dict {PACKAGE_PIN AD16 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[32]}] -set_property -dict {PACKAGE_PIN AE17 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[33]}] -set_property -dict {PACKAGE_PIN AF15 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[34]}] -set_property -dict {PACKAGE_PIN AF20 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[35]}] -set_property -dict {PACKAGE_PIN AD15 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[36]}] -set_property -dict {PACKAGE_PIN AF14 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[37]}] -set_property -dict {PACKAGE_PIN AE15 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[38]}] -set_property -dict {PACKAGE_PIN AF17 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[39]}] - -set_property -dict {PACKAGE_PIN AF19 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_dm[4]}] - -set_property -dict {PACKAGE_PIN AE18 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_p[4]}] -set_property -dict {PACKAGE_PIN AF18 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_n[4]}] - - -## Byte lane #5 -set_property -dict {PACKAGE_PIN AA14 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[40]}] -set_property -dict {PACKAGE_PIN AA15 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[41]}] -set_property -dict {PACKAGE_PIN AC14 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[42]}] -set_property -dict {PACKAGE_PIN AD14 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[43]}] -set_property -dict {PACKAGE_PIN AB14 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[44]}] -set_property -dict {PACKAGE_PIN AB15 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[45]}] -set_property -dict {PACKAGE_PIN AA17 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[46]}] -set_property -dict {PACKAGE_PIN AA18 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[47]}] - -set_property -dict {PACKAGE_PIN AC16 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_dm[5]}] - -set_property -dict {PACKAGE_PIN Y15 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_p[5]}] -set_property -dict {PACKAGE_PIN Y16 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_n[5]}] - - -## Byte lane #6 -set_property -dict {PACKAGE_PIN AB20 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[48]}] -set_property -dict {PACKAGE_PIN AD19 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[49]}] -set_property -dict {PACKAGE_PIN AC19 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[50]}] -set_property -dict {PACKAGE_PIN AA20 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[51]}] -set_property -dict {PACKAGE_PIN AA19 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[52]}] -set_property -dict {PACKAGE_PIN AC17 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[53]}] -set_property -dict {PACKAGE_PIN AD18 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[54]}] -set_property -dict {PACKAGE_PIN AB17 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[55]}] -set_property -dict {PACKAGE_PIN AB19 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_dm[6]}] -set_property -dict {PACKAGE_PIN AD20 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_p[6]}] -set_property -dict {PACKAGE_PIN AE20 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_n[6]}] - - -## Byte lane #7 -set_property -dict {PACKAGE_PIN W15 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[56]}] -set_property -dict {PACKAGE_PIN W16 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[57]}] -set_property -dict {PACKAGE_PIN W14 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[58]}] -set_property -dict {PACKAGE_PIN V16 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[59]}] -set_property -dict {PACKAGE_PIN V19 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[60]}] -set_property -dict {PACKAGE_PIN V17 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[61]}] -set_property -dict {PACKAGE_PIN V18 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[62]}] -set_property -dict {PACKAGE_PIN Y17 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dq[63]}] - -set_property -dict {PACKAGE_PIN V14 IOSTANDARD SSTL15 SLEW FAST VCCAUX_IO HIGH } [get_ports {ddr3_dm[7]}] - -set_property -dict {PACKAGE_PIN W18 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_p[7]}] -set_property -dict {PACKAGE_PIN W19 IOSTANDARD DIFF_SSTL15 SLEW FAST VCCAUX_IO HIGH} [get_ports {ddr3_dqs_n[7]}] - - - -set_property BITSTREAM.GENERAL.COMPRESS TRUE [current_design] diff --git a/example_demo/enclustra_kx2_st1/enclustra_ddr3.v b/example_demo/enclustra_kx2_st1/enclustra_ddr3.v index 1df9e34..a91b840 100644 --- a/example_demo/enclustra_kx2_st1/enclustra_ddr3.v +++ b/example_demo/enclustra_kx2_st1/enclustra_ddr3.v @@ -110,25 +110,40 @@ end wire clk_locked; - wire i_ddr3_clk_90; - clk_wiz clk_wiz_inst + // PLL +// clk_wiz clk_wiz_inst +// ( +// // Clock out ports +// .clk_out1(i_controller_clk), // 166 Mhz +// .clk_out2(i_ddr3_clk), // 1333 MHz +// .clk_out3(i_ref_clk), // 200 MHz +// // Status and control signals +// .reset(!i_rst_n), +// .locked(clk_locked), +// // Clock in ports +// .clk_in1(sys_clk_200MHz) +// ); + + // Clock Wizard + wire clkfb_out; + clk_wiz_0 clk_wiz_inst ( - // Clock out ports - .clk_out1(i_controller_clk), //83.333 Mhz - .clk_out2(i_ddr3_clk), // 333.333 MHz - .clk_out3(i_ref_clk), // 200 MHz - .clk_out4(i_ddr3_clk_90), // 333.333 MHz with 90 degrees shift - // Status and control signals - .reset(!i_rst_n), - .locked(clk_locked), - // Clock in ports - .clk_in1(sys_clk_200MHz) + // Clock out ports + .controller_clk(i_controller_clk), + .ddr3_clk(i_ddr3_clk), + .ref200_clk(i_ref_clk), + // Status and control signals + .reset(!i_rst_n), + .locked(clk_locked), + // Clock in ports + .clk_in1(sys_clk_200MHz) ); + // UART TX/RX module from https://github.com/ben-marshall/uart uart_tx #( .BIT_RATE(9600), - .CLK_HZ(83_333_333), + .CLK_HZ(200_000_000), .PAYLOAD_BITS(8), .STOP_BITS(1) ) uart_tx_inst ( @@ -141,7 +156,7 @@ ); uart_rx #( .BIT_RATE(9600), - .CLK_HZ(83_333_333), + .CLK_HZ(200_000_000), .PAYLOAD_BITS(8), .STOP_BITS(1) ) uart_rx_inst ( @@ -173,8 +188,8 @@ // DDR3 Controller ddr3_top #( - .CONTROLLER_CLK_PERIOD(12_000), //ps, clock period of the controller interface - .DDR3_CLK_PERIOD(3_000), //ps, clock period of the DDR3 RAM device (must be 1/4 of the CONTROLLER_CLK_PERIOD) + .CONTROLLER_CLK_PERIOD(5_000), //ps, clock period of the controller interface + .DDR3_CLK_PERIOD(1_250), //ps, clock period of the DDR3 RAM device (must be 1/4 of the CONTROLLER_CLK_PERIOD) .ROW_BITS(15), //width of row address .COL_BITS(10), //width of column address .BA_BITS(3), //width of bank address @@ -192,8 +207,8 @@ //clock and reset .i_controller_clk(i_controller_clk), .i_ddr3_clk(i_ddr3_clk), //i_controller_clk has period of CONTROLLER_CLK_PERIOD, i_ddr3_clk has period of DDR3_CLK_PERIOD - .i_ref_clk(i_ref_clk), - .i_ddr3_clk_90(i_ddr3_clk_90), + .i_ref_clk(i_ref_clk/*sys_clk_200MHz*/), + .i_ddr3_clk_90(), .i_rst_n(i_rst_n && clk_locked), // Wishbone inputs .i_wb_cyc(1), //bus cycle active (1 = normal operation, 0 = all ongoing transaction are to be cancelled) @@ -236,9 +251,7 @@ .io_ddr3_dqs_n(ddr3_dqs_n), .o_ddr3_dm(ddr3_dm), .o_ddr3_odt(ddr3_odt), // on-die termination - .o_debug1(o_debug1), - .o_debug2(), - .o_debug3() + .o_debug1(o_debug1) ); endmodule diff --git a/example_demo/enclustra_kx2_st1/enclustra_ddr3.xdc b/example_demo/enclustra_kx2_st1/enclustra_ddr3.xdc index 8f0c3d5..fea9ca0 100755 --- a/example_demo/enclustra_kx2_st1/enclustra_ddr3.xdc +++ b/example_demo/enclustra_kx2_st1/enclustra_ddr3.xdc @@ -2,733 +2,724 @@ # IO constraints ################################################################################ # cpu_reset_n:0 -set_property LOC C22 [get_ports {i_rst_n}] -set_property IOSTANDARD LVCMOS18 [get_ports {i_rst_n}] +set_property PACKAGE_PIN C22 [get_ports i_rst_n] +set_property IOSTANDARD LVCMOS18 [get_ports i_rst_n] +set_property -dict {PACKAGE_PIN AD23 IOSTANDARD LVCMOS18} [get_ports btn] # clk200:0.p -set_property LOC AB11 [get_ports {i_clk200_p}] -set_property IOSTANDARD LVDS [get_ports {i_clk200_p}] +set_property IOSTANDARD LVDS [get_ports i_clk200_p] # clk200:0.n -set_property LOC AC11 [get_ports {i_clk200_n}] -set_property IOSTANDARD LVDS [get_ports {i_clk200_n}] +set_property PACKAGE_PIN AB11 [get_ports i_clk200_p] +set_property PACKAGE_PIN AC11 [get_ports i_clk200_n] +set_property IOSTANDARD LVDS [get_ports i_clk200_n] # serial:0.tx -set_property LOC A20 [get_ports {tx}] -set_property IOSTANDARD LVCMOS18 [get_ports {tx}] +set_property PACKAGE_PIN A20 [get_ports tx] +set_property IOSTANDARD LVCMOS18 [get_ports tx] # serial:0.rx -set_property LOC B20 [get_ports {rx}] -set_property IOSTANDARD LVCMOS18 [get_ports {rx}] +set_property PACKAGE_PIN B20 [get_ports rx] +set_property IOSTANDARD LVCMOS18 [get_ports rx] # ddram:0.a -set_property LOC AE11 [get_ports {ddr3_addr[0]}] +set_property PACKAGE_PIN AE11 [get_ports {ddr3_addr[0]}] set_property SLEW FAST [get_ports {ddr3_addr[0]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[0]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[0]}] # ddram:0.a -set_property LOC AF9 [get_ports {ddr3_addr[1]}] +set_property PACKAGE_PIN AF9 [get_ports {ddr3_addr[1]}] set_property SLEW FAST [get_ports {ddr3_addr[1]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[1]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[1]}] # ddram:0.a -set_property LOC AD10 [get_ports {ddr3_addr[2]}] +set_property PACKAGE_PIN AD10 [get_ports {ddr3_addr[2]}] set_property SLEW FAST [get_ports {ddr3_addr[2]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[2]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[2]}] # ddram:0.a -set_property LOC AB10 [get_ports {ddr3_addr[3]}] +set_property PACKAGE_PIN AB10 [get_ports {ddr3_addr[3]}] set_property SLEW FAST [get_ports {ddr3_addr[3]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[3]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[3]}] # ddram:0.a -set_property LOC AA9 [get_ports {ddr3_addr[4]}] +set_property PACKAGE_PIN AA9 [get_ports {ddr3_addr[4]}] set_property SLEW FAST [get_ports {ddr3_addr[4]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[4]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[4]}] # ddram:0.a -set_property LOC AB9 [get_ports {ddr3_addr[5]}] +set_property PACKAGE_PIN AB9 [get_ports {ddr3_addr[5]}] set_property SLEW FAST [get_ports {ddr3_addr[5]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[5]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[5]}] # ddram:0.a -set_property LOC AA8 [get_ports {ddr3_addr[6]}] +set_property PACKAGE_PIN AA8 [get_ports {ddr3_addr[6]}] set_property SLEW FAST [get_ports {ddr3_addr[6]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[6]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[6]}] # ddram:0.a -set_property LOC AC8 [get_ports {ddr3_addr[7]}] +set_property PACKAGE_PIN AC8 [get_ports {ddr3_addr[7]}] set_property SLEW FAST [get_ports {ddr3_addr[7]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[7]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[7]}] # ddram:0.a -set_property LOC AA7 [get_ports {ddr3_addr[8]}] +set_property PACKAGE_PIN AA7 [get_ports {ddr3_addr[8]}] set_property SLEW FAST [get_ports {ddr3_addr[8]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[8]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[8]}] # ddram:0.a -set_property LOC AE8 [get_ports {ddr3_addr[9]}] +set_property PACKAGE_PIN AE8 [get_ports {ddr3_addr[9]}] set_property SLEW FAST [get_ports {ddr3_addr[9]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[9]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[9]}] # ddram:0.a -set_property LOC AF10 [get_ports {ddr3_addr[10]}] +set_property PACKAGE_PIN AF10 [get_ports {ddr3_addr[10]}] set_property SLEW FAST [get_ports {ddr3_addr[10]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[10]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[10]}] # ddram:0.a -set_property LOC AD8 [get_ports {ddr3_addr[11]}] +set_property PACKAGE_PIN AD8 [get_ports {ddr3_addr[11]}] set_property SLEW FAST [get_ports {ddr3_addr[11]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[11]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[11]}] # ddram:0.a -set_property LOC AE10 [get_ports {ddr3_addr[12]}] +set_property PACKAGE_PIN AE10 [get_ports {ddr3_addr[12]}] set_property SLEW FAST [get_ports {ddr3_addr[12]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[12]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[12]}] # ddram:0.a -set_property LOC AF8 [get_ports {ddr3_addr[13]}] +set_property PACKAGE_PIN AF8 [get_ports {ddr3_addr[13]}] set_property SLEW FAST [get_ports {ddr3_addr[13]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[13]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[13]}] # ddram:0.a -set_property LOC AC7 [get_ports {ddr3_addr[14]}] +set_property PACKAGE_PIN AC7 [get_ports {ddr3_addr[14]}] set_property SLEW FAST [get_ports {ddr3_addr[14]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[14]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[14]}] # ddram:0.ba -set_property LOC AD11 [get_ports {ddr3_ba[0]}] +set_property PACKAGE_PIN AD11 [get_ports {ddr3_ba[0]}] set_property SLEW FAST [get_ports {ddr3_ba[0]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_ba[0]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_ba[0]}] # ddram:0.ba -set_property LOC AA10 [get_ports {ddr3_ba[1]}] +set_property PACKAGE_PIN AA10 [get_ports {ddr3_ba[1]}] set_property SLEW FAST [get_ports {ddr3_ba[1]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_ba[1]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_ba[1]}] # ddram:0.ba -set_property LOC AF12 [get_ports {ddr3_ba[2]}] +set_property PACKAGE_PIN AF12 [get_ports {ddr3_ba[2]}] set_property SLEW FAST [get_ports {ddr3_ba[2]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_ba[2]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_ba[2]}] # ddram:0.ras_n -set_property LOC AE13 [get_ports {ddr3_ras_n}] -set_property SLEW FAST [get_ports {ddr3_ras_n}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_ras_n}] -set_property IOSTANDARD SSTL15 [get_ports {ddr3_ras_n}] +set_property PACKAGE_PIN AE13 [get_ports ddr3_ras_n] +set_property SLEW FAST [get_ports ddr3_ras_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_ras_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_ras_n] # ddram:0.cas_n -set_property LOC AE12 [get_ports {ddr3_cas_n}] -set_property SLEW FAST [get_ports {ddr3_cas_n}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_cas_n}] -set_property IOSTANDARD SSTL15 [get_ports {ddr3_cas_n}] +set_property PACKAGE_PIN AE12 [get_ports ddr3_cas_n] +set_property SLEW FAST [get_ports ddr3_cas_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_cas_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_cas_n] # ddram:0.we_n -set_property LOC AA12 [get_ports {ddr3_we_n}] -set_property SLEW FAST [get_ports {ddr3_we_n}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_we_n}] -set_property IOSTANDARD SSTL15 [get_ports {ddr3_we_n}] +set_property PACKAGE_PIN AA12 [get_ports ddr3_we_n] +set_property SLEW FAST [get_ports ddr3_we_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_we_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_we_n] # ddram:0.cs_n -set_property LOC Y12 [get_ports {ddr3_cs_n}] -set_property SLEW FAST [get_ports {ddr3_cs_n}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_cs_n}] -set_property IOSTANDARD SSTL15 [get_ports {ddr3_cs_n}] +set_property PACKAGE_PIN Y12 [get_ports ddr3_cs_n] +set_property SLEW FAST [get_ports ddr3_cs_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_cs_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_cs_n] # ddram:0.dm -set_property LOC Y3 [get_ports {ddr3_dm[0]}] +set_property PACKAGE_PIN Y3 [get_ports {ddr3_dm[0]}] set_property SLEW FAST [get_ports {ddr3_dm[0]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[0]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[0]}] # ddram:0.dm -set_property LOC U5 [get_ports {ddr3_dm[1]}] +set_property PACKAGE_PIN U5 [get_ports {ddr3_dm[1]}] set_property SLEW FAST [get_ports {ddr3_dm[1]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[1]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[1]}] # ddram:0.dm -set_property LOC AD4 [get_ports {ddr3_dm[2]}] +set_property PACKAGE_PIN AD4 [get_ports {ddr3_dm[2]}] set_property SLEW FAST [get_ports {ddr3_dm[2]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[2]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[2]}] # ddram:0.dm -set_property LOC AC4 [get_ports {ddr3_dm[3]}] +set_property PACKAGE_PIN AC4 [get_ports {ddr3_dm[3]}] set_property SLEW FAST [get_ports {ddr3_dm[3]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[3]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[3]}] # ddram:0.dm -set_property LOC AF19 [get_ports {ddr3_dm[4]}] +set_property PACKAGE_PIN AF19 [get_ports {ddr3_dm[4]}] set_property SLEW FAST [get_ports {ddr3_dm[4]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[4]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[4]}] # ddram:0.dm -set_property LOC AC16 [get_ports {ddr3_dm[5]}] +set_property PACKAGE_PIN AC16 [get_ports {ddr3_dm[5]}] set_property SLEW FAST [get_ports {ddr3_dm[5]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[5]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[5]}] # ddram:0.dm -set_property LOC AB19 [get_ports {ddr3_dm[6]}] +set_property PACKAGE_PIN AB19 [get_ports {ddr3_dm[6]}] set_property SLEW FAST [get_ports {ddr3_dm[6]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[6]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[6]}] # ddram:0.dm -set_property LOC V14 [get_ports {ddr3_dm[7]}] +set_property PACKAGE_PIN V14 [get_ports {ddr3_dm[7]}] set_property SLEW FAST [get_ports {ddr3_dm[7]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[7]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[7]}] # ddram:0.dq -set_property LOC AA2 [get_ports {ddr3_dq[0]}] +set_property PACKAGE_PIN AA2 [get_ports {ddr3_dq[0]}] set_property SLEW FAST [get_ports {ddr3_dq[0]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[0]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[0]}] # ddram:0.dq -set_property LOC Y2 [get_ports {ddr3_dq[1]}] +set_property PACKAGE_PIN Y2 [get_ports {ddr3_dq[1]}] set_property SLEW FAST [get_ports {ddr3_dq[1]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[1]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[1]}] # ddram:0.dq -set_property LOC AB2 [get_ports {ddr3_dq[2]}] +set_property PACKAGE_PIN AB2 [get_ports {ddr3_dq[2]}] set_property SLEW FAST [get_ports {ddr3_dq[2]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[2]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[2]}] # ddram:0.dq -set_property LOC V1 [get_ports {ddr3_dq[3]}] +set_property PACKAGE_PIN V1 [get_ports {ddr3_dq[3]}] set_property SLEW FAST [get_ports {ddr3_dq[3]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[3]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[3]}] # ddram:0.dq -set_property LOC Y1 [get_ports {ddr3_dq[4]}] +set_property PACKAGE_PIN Y1 [get_ports {ddr3_dq[4]}] set_property SLEW FAST [get_ports {ddr3_dq[4]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[4]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[4]}] # ddram:0.dq -set_property LOC W1 [get_ports {ddr3_dq[5]}] +set_property PACKAGE_PIN W1 [get_ports {ddr3_dq[5]}] set_property SLEW FAST [get_ports {ddr3_dq[5]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[5]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[5]}] # ddram:0.dq -set_property LOC AC2 [get_ports {ddr3_dq[6]}] +set_property PACKAGE_PIN AC2 [get_ports {ddr3_dq[6]}] set_property SLEW FAST [get_ports {ddr3_dq[6]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[6]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[6]}] # ddram:0.dq -set_property LOC V2 [get_ports {ddr3_dq[7]}] +set_property PACKAGE_PIN V2 [get_ports {ddr3_dq[7]}] set_property SLEW FAST [get_ports {ddr3_dq[7]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[7]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[7]}] # ddram:0.dq -set_property LOC W3 [get_ports {ddr3_dq[8]}] +set_property PACKAGE_PIN W3 [get_ports {ddr3_dq[8]}] set_property SLEW FAST [get_ports {ddr3_dq[8]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[8]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[8]}] # ddram:0.dq -set_property LOC V3 [get_ports {ddr3_dq[9]}] +set_property PACKAGE_PIN V3 [get_ports {ddr3_dq[9]}] set_property SLEW FAST [get_ports {ddr3_dq[9]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[9]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[9]}] # ddram:0.dq -set_property LOC U1 [get_ports {ddr3_dq[10]}] +set_property PACKAGE_PIN U1 [get_ports {ddr3_dq[10]}] set_property SLEW FAST [get_ports {ddr3_dq[10]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[10]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[10]}] # ddram:0.dq -set_property LOC U7 [get_ports {ddr3_dq[11]}] +set_property PACKAGE_PIN U7 [get_ports {ddr3_dq[11]}] set_property SLEW FAST [get_ports {ddr3_dq[11]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[11]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[11]}] # ddram:0.dq -set_property LOC U6 [get_ports {ddr3_dq[12]}] +set_property PACKAGE_PIN U6 [get_ports {ddr3_dq[12]}] set_property SLEW FAST [get_ports {ddr3_dq[12]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[12]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[12]}] # ddram:0.dq -set_property LOC V4 [get_ports {ddr3_dq[13]}] +set_property PACKAGE_PIN V4 [get_ports {ddr3_dq[13]}] set_property SLEW FAST [get_ports {ddr3_dq[13]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[13]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[13]}] # ddram:0.dq -set_property LOC V6 [get_ports {ddr3_dq[14]}] +set_property PACKAGE_PIN V6 [get_ports {ddr3_dq[14]}] set_property SLEW FAST [get_ports {ddr3_dq[14]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[14]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[14]}] # ddram:0.dq -set_property LOC U2 [get_ports {ddr3_dq[15]}] +set_property PACKAGE_PIN U2 [get_ports {ddr3_dq[15]}] set_property SLEW FAST [get_ports {ddr3_dq[15]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[15]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[15]}] # ddram:0.dq -set_property LOC AE3 [get_ports {ddr3_dq[16]}] +set_property PACKAGE_PIN AE3 [get_ports {ddr3_dq[16]}] set_property SLEW FAST [get_ports {ddr3_dq[16]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[16]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[16]}] # ddram:0.dq -set_property LOC AE6 [get_ports {ddr3_dq[17]}] +set_property PACKAGE_PIN AE6 [get_ports {ddr3_dq[17]}] set_property SLEW FAST [get_ports {ddr3_dq[17]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[17]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[17]}] # ddram:0.dq -set_property LOC AF3 [get_ports {ddr3_dq[18]}] +set_property PACKAGE_PIN AF3 [get_ports {ddr3_dq[18]}] set_property SLEW FAST [get_ports {ddr3_dq[18]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[18]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[18]}] # ddram:0.dq -set_property LOC AD1 [get_ports {ddr3_dq[19]}] +set_property PACKAGE_PIN AD1 [get_ports {ddr3_dq[19]}] set_property SLEW FAST [get_ports {ddr3_dq[19]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[19]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[19]}] # ddram:0.dq -set_property LOC AE1 [get_ports {ddr3_dq[20]}] +set_property PACKAGE_PIN AE1 [get_ports {ddr3_dq[20]}] set_property SLEW FAST [get_ports {ddr3_dq[20]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[20]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[20]}] # ddram:0.dq -set_property LOC AE2 [get_ports {ddr3_dq[21]}] +set_property PACKAGE_PIN AE2 [get_ports {ddr3_dq[21]}] set_property SLEW FAST [get_ports {ddr3_dq[21]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[21]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[21]}] # ddram:0.dq -set_property LOC AF2 [get_ports {ddr3_dq[22]}] +set_property PACKAGE_PIN AF2 [get_ports {ddr3_dq[22]}] set_property SLEW FAST [get_ports {ddr3_dq[22]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[22]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[22]}] # ddram:0.dq -set_property LOC AE5 [get_ports {ddr3_dq[23]}] +set_property PACKAGE_PIN AE5 [get_ports {ddr3_dq[23]}] set_property SLEW FAST [get_ports {ddr3_dq[23]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[23]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[23]}] # ddram:0.dq -set_property LOC AD5 [get_ports {ddr3_dq[24]}] +set_property PACKAGE_PIN AD5 [get_ports {ddr3_dq[24]}] set_property SLEW FAST [get_ports {ddr3_dq[24]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[24]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[24]}] # ddram:0.dq -set_property LOC Y5 [get_ports {ddr3_dq[25]}] +set_property PACKAGE_PIN Y5 [get_ports {ddr3_dq[25]}] set_property SLEW FAST [get_ports {ddr3_dq[25]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[25]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[25]}] # ddram:0.dq -set_property LOC AC6 [get_ports {ddr3_dq[26]}] +set_property PACKAGE_PIN AC6 [get_ports {ddr3_dq[26]}] set_property SLEW FAST [get_ports {ddr3_dq[26]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[26]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[26]}] # ddram:0.dq -set_property LOC Y6 [get_ports {ddr3_dq[27]}] +set_property PACKAGE_PIN Y6 [get_ports {ddr3_dq[27]}] set_property SLEW FAST [get_ports {ddr3_dq[27]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[27]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[27]}] # ddram:0.dq -set_property LOC AB4 [get_ports {ddr3_dq[28]}] +set_property PACKAGE_PIN AB4 [get_ports {ddr3_dq[28]}] set_property SLEW FAST [get_ports {ddr3_dq[28]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[28]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[28]}] # ddram:0.dq -set_property LOC AD6 [get_ports {ddr3_dq[29]}] +set_property PACKAGE_PIN AD6 [get_ports {ddr3_dq[29]}] set_property SLEW FAST [get_ports {ddr3_dq[29]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[29]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[29]}] # ddram:0.dq -set_property LOC AB6 [get_ports {ddr3_dq[30]}] +set_property PACKAGE_PIN AB6 [get_ports {ddr3_dq[30]}] set_property SLEW FAST [get_ports {ddr3_dq[30]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[30]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[30]}] # ddram:0.dq -set_property LOC AC3 [get_ports {ddr3_dq[31]}] +set_property PACKAGE_PIN AC3 [get_ports {ddr3_dq[31]}] set_property SLEW FAST [get_ports {ddr3_dq[31]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[31]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[31]}] # ddram:0.dq -set_property LOC AD16 [get_ports {ddr3_dq[32]}] +set_property PACKAGE_PIN AD16 [get_ports {ddr3_dq[32]}] set_property SLEW FAST [get_ports {ddr3_dq[32]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[32]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[32]}] # ddram:0.dq -set_property LOC AE17 [get_ports {ddr3_dq[33]}] +set_property PACKAGE_PIN AE17 [get_ports {ddr3_dq[33]}] set_property SLEW FAST [get_ports {ddr3_dq[33]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[33]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[33]}] # ddram:0.dq -set_property LOC AF15 [get_ports {ddr3_dq[34]}] +set_property PACKAGE_PIN AF15 [get_ports {ddr3_dq[34]}] set_property SLEW FAST [get_ports {ddr3_dq[34]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[34]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[34]}] # ddram:0.dq -set_property LOC AF20 [get_ports {ddr3_dq[35]}] +set_property PACKAGE_PIN AF20 [get_ports {ddr3_dq[35]}] set_property SLEW FAST [get_ports {ddr3_dq[35]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[35]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[35]}] # ddram:0.dq -set_property LOC AD15 [get_ports {ddr3_dq[36]}] +set_property PACKAGE_PIN AD15 [get_ports {ddr3_dq[36]}] set_property SLEW FAST [get_ports {ddr3_dq[36]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[36]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[36]}] # ddram:0.dq -set_property LOC AF14 [get_ports {ddr3_dq[37]}] +set_property PACKAGE_PIN AF14 [get_ports {ddr3_dq[37]}] set_property SLEW FAST [get_ports {ddr3_dq[37]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[37]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[37]}] # ddram:0.dq -set_property LOC AE15 [get_ports {ddr3_dq[38]}] +set_property PACKAGE_PIN AE15 [get_ports {ddr3_dq[38]}] set_property SLEW FAST [get_ports {ddr3_dq[38]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[38]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[38]}] # ddram:0.dq -set_property LOC AF17 [get_ports {ddr3_dq[39]}] +set_property PACKAGE_PIN AF17 [get_ports {ddr3_dq[39]}] set_property SLEW FAST [get_ports {ddr3_dq[39]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[39]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[39]}] # ddram:0.dq -set_property LOC AA14 [get_ports {ddr3_dq[40]}] +set_property PACKAGE_PIN AA14 [get_ports {ddr3_dq[40]}] set_property SLEW FAST [get_ports {ddr3_dq[40]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[40]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[40]}] # ddram:0.dq -set_property LOC AA15 [get_ports {ddr3_dq[41]}] +set_property PACKAGE_PIN AA15 [get_ports {ddr3_dq[41]}] set_property SLEW FAST [get_ports {ddr3_dq[41]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[41]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[41]}] # ddram:0.dq -set_property LOC AC14 [get_ports {ddr3_dq[42]}] +set_property PACKAGE_PIN AC14 [get_ports {ddr3_dq[42]}] set_property SLEW FAST [get_ports {ddr3_dq[42]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[42]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[42]}] # ddram:0.dq -set_property LOC AD14 [get_ports {ddr3_dq[43]}] +set_property PACKAGE_PIN AD14 [get_ports {ddr3_dq[43]}] set_property SLEW FAST [get_ports {ddr3_dq[43]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[43]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[43]}] # ddram:0.dq -set_property LOC AB14 [get_ports {ddr3_dq[44]}] +set_property PACKAGE_PIN AB14 [get_ports {ddr3_dq[44]}] set_property SLEW FAST [get_ports {ddr3_dq[44]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[44]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[44]}] # ddram:0.dq -set_property LOC AB15 [get_ports {ddr3_dq[45]}] +set_property PACKAGE_PIN AB15 [get_ports {ddr3_dq[45]}] set_property SLEW FAST [get_ports {ddr3_dq[45]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[45]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[45]}] # ddram:0.dq -set_property LOC AA17 [get_ports {ddr3_dq[46]}] +set_property PACKAGE_PIN AA17 [get_ports {ddr3_dq[46]}] set_property SLEW FAST [get_ports {ddr3_dq[46]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[46]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[46]}] # ddram:0.dq -set_property LOC AA18 [get_ports {ddr3_dq[47]}] +set_property PACKAGE_PIN AA18 [get_ports {ddr3_dq[47]}] set_property SLEW FAST [get_ports {ddr3_dq[47]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[47]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[47]}] # ddram:0.dq -set_property LOC AB20 [get_ports {ddr3_dq[48]}] +set_property PACKAGE_PIN AB20 [get_ports {ddr3_dq[48]}] set_property SLEW FAST [get_ports {ddr3_dq[48]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[48]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[48]}] # ddram:0.dq -set_property LOC AD19 [get_ports {ddr3_dq[49]}] +set_property PACKAGE_PIN AD19 [get_ports {ddr3_dq[49]}] set_property SLEW FAST [get_ports {ddr3_dq[49]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[49]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[49]}] # ddram:0.dq -set_property LOC AC19 [get_ports {ddr3_dq[50]}] +set_property PACKAGE_PIN AC19 [get_ports {ddr3_dq[50]}] set_property SLEW FAST [get_ports {ddr3_dq[50]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[50]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[50]}] # ddram:0.dq -set_property LOC AA20 [get_ports {ddr3_dq[51]}] +set_property PACKAGE_PIN AA20 [get_ports {ddr3_dq[51]}] set_property SLEW FAST [get_ports {ddr3_dq[51]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[51]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[51]}] # ddram:0.dq -set_property LOC AA19 [get_ports {ddr3_dq[52]}] +set_property PACKAGE_PIN AA19 [get_ports {ddr3_dq[52]}] set_property SLEW FAST [get_ports {ddr3_dq[52]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[52]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[52]}] # ddram:0.dq -set_property LOC AC17 [get_ports {ddr3_dq[53]}] +set_property PACKAGE_PIN AC17 [get_ports {ddr3_dq[53]}] set_property SLEW FAST [get_ports {ddr3_dq[53]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[53]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[53]}] # ddram:0.dq -set_property LOC AD18 [get_ports {ddr3_dq[54]}] +set_property PACKAGE_PIN AD18 [get_ports {ddr3_dq[54]}] set_property SLEW FAST [get_ports {ddr3_dq[54]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[54]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[54]}] # ddram:0.dq -set_property LOC AB17 [get_ports {ddr3_dq[55]}] +set_property PACKAGE_PIN AB17 [get_ports {ddr3_dq[55]}] set_property SLEW FAST [get_ports {ddr3_dq[55]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[55]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[55]}] # ddram:0.dq -set_property LOC W15 [get_ports {ddr3_dq[56]}] +set_property PACKAGE_PIN W15 [get_ports {ddr3_dq[56]}] set_property SLEW FAST [get_ports {ddr3_dq[56]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[56]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[56]}] # ddram:0.dq -set_property LOC W16 [get_ports {ddr3_dq[57]}] +set_property PACKAGE_PIN W16 [get_ports {ddr3_dq[57]}] set_property SLEW FAST [get_ports {ddr3_dq[57]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[57]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[57]}] # ddram:0.dq -set_property LOC W14 [get_ports {ddr3_dq[58]}] +set_property PACKAGE_PIN W14 [get_ports {ddr3_dq[58]}] set_property SLEW FAST [get_ports {ddr3_dq[58]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[58]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[58]}] # ddram:0.dq -set_property LOC V16 [get_ports {ddr3_dq[59]}] +set_property PACKAGE_PIN V16 [get_ports {ddr3_dq[59]}] set_property SLEW FAST [get_ports {ddr3_dq[59]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[59]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[59]}] # ddram:0.dq -set_property LOC V19 [get_ports {ddr3_dq[60]}] +set_property PACKAGE_PIN V19 [get_ports {ddr3_dq[60]}] set_property SLEW FAST [get_ports {ddr3_dq[60]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[60]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[60]}] # ddram:0.dq -set_property LOC V17 [get_ports {ddr3_dq[61]}] +set_property PACKAGE_PIN V17 [get_ports {ddr3_dq[61]}] set_property SLEW FAST [get_ports {ddr3_dq[61]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[61]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[61]}] # ddram:0.dq -set_property LOC V18 [get_ports {ddr3_dq[62]}] +set_property PACKAGE_PIN V18 [get_ports {ddr3_dq[62]}] set_property SLEW FAST [get_ports {ddr3_dq[62]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[62]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[62]}] # ddram:0.dq -set_property LOC Y17 [get_ports {ddr3_dq[63]}] +set_property PACKAGE_PIN Y17 [get_ports {ddr3_dq[63]}] set_property SLEW FAST [get_ports {ddr3_dq[63]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[63]}] set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[63]}] # ddram:0.dqs_p -set_property LOC AB1 [get_ports {ddr3_dqs_p[0]}] set_property SLEW FAST [get_ports {ddr3_dqs_p[0]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[0]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[0]}] # ddram:0.dqs_p -set_property LOC W6 [get_ports {ddr3_dqs_p[1]}] set_property SLEW FAST [get_ports {ddr3_dqs_p[1]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[1]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[1]}] # ddram:0.dqs_p -set_property LOC AF5 [get_ports {ddr3_dqs_p[2]}] set_property SLEW FAST [get_ports {ddr3_dqs_p[2]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[2]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[2]}] # ddram:0.dqs_p -set_property LOC AA5 [get_ports {ddr3_dqs_p[3]}] set_property SLEW FAST [get_ports {ddr3_dqs_p[3]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[3]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[3]}] # ddram:0.dqs_p -set_property LOC AE18 [get_ports {ddr3_dqs_p[4]}] set_property SLEW FAST [get_ports {ddr3_dqs_p[4]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[4]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[4]}] # ddram:0.dqs_p -set_property LOC Y15 [get_ports {ddr3_dqs_p[5]}] set_property SLEW FAST [get_ports {ddr3_dqs_p[5]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[5]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[5]}] # ddram:0.dqs_p -set_property LOC AD20 [get_ports {ddr3_dqs_p[6]}] set_property SLEW FAST [get_ports {ddr3_dqs_p[6]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[6]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[6]}] # ddram:0.dqs_p -set_property LOC W18 [get_ports {ddr3_dqs_p[7]}] set_property SLEW FAST [get_ports {ddr3_dqs_p[7]}] set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[7]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[7]}] # ddram:0.dqs_n -set_property LOC AC1 [get_ports {ddr3_dqs_n[0]}] +set_property PACKAGE_PIN AB1 [get_ports {ddr3_dqs_p[0]}] +set_property PACKAGE_PIN AC1 [get_ports {ddr3_dqs_n[0]}] set_property SLEW FAST [get_ports {ddr3_dqs_n[0]}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_n[0]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[0]}] # ddram:0.dqs_n -set_property LOC W5 [get_ports {ddr3_dqs_n[1]}] +set_property PACKAGE_PIN W6 [get_ports {ddr3_dqs_p[1]}] +set_property PACKAGE_PIN W5 [get_ports {ddr3_dqs_n[1]}] set_property SLEW FAST [get_ports {ddr3_dqs_n[1]}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_n[1]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[1]}] # ddram:0.dqs_n -set_property LOC AF4 [get_ports {ddr3_dqs_n[2]}] +set_property PACKAGE_PIN AF5 [get_ports {ddr3_dqs_p[2]}] +set_property PACKAGE_PIN AF4 [get_ports {ddr3_dqs_n[2]}] set_property SLEW FAST [get_ports {ddr3_dqs_n[2]}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_n[2]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[2]}] # ddram:0.dqs_n -set_property LOC AB5 [get_ports {ddr3_dqs_n[3]}] +set_property PACKAGE_PIN AA5 [get_ports {ddr3_dqs_p[3]}] +set_property PACKAGE_PIN AB5 [get_ports {ddr3_dqs_n[3]}] set_property SLEW FAST [get_ports {ddr3_dqs_n[3]}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_n[3]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[3]}] # ddram:0.dqs_n -set_property LOC AF18 [get_ports {ddr3_dqs_n[4]}] +set_property PACKAGE_PIN AE18 [get_ports {ddr3_dqs_p[4]}] +set_property PACKAGE_PIN AF18 [get_ports {ddr3_dqs_n[4]}] set_property SLEW FAST [get_ports {ddr3_dqs_n[4]}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_n[4]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[4]}] # ddram:0.dqs_n -set_property LOC Y16 [get_ports {ddr3_dqs_n[5]}] +set_property PACKAGE_PIN Y15 [get_ports {ddr3_dqs_p[5]}] +set_property PACKAGE_PIN Y16 [get_ports {ddr3_dqs_n[5]}] set_property SLEW FAST [get_ports {ddr3_dqs_n[5]}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_n[5]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[5]}] # ddram:0.dqs_n -set_property LOC AE20 [get_ports {ddr3_dqs_n[6]}] +set_property PACKAGE_PIN AD20 [get_ports {ddr3_dqs_p[6]}] +set_property PACKAGE_PIN AE20 [get_ports {ddr3_dqs_n[6]}] set_property SLEW FAST [get_ports {ddr3_dqs_n[6]}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_n[6]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[6]}] # ddram:0.dqs_n -set_property LOC W19 [get_ports {ddr3_dqs_n[7]}] +set_property PACKAGE_PIN W18 [get_ports {ddr3_dqs_p[7]}] +set_property PACKAGE_PIN W19 [get_ports {ddr3_dqs_n[7]}] set_property SLEW FAST [get_ports {ddr3_dqs_n[7]}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_n[7]}] set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[7]}] # ddram:0.clk_p -set_property LOC AB12 [get_ports {ddr3_clk_p}] -set_property SLEW FAST [get_ports {ddr3_clk_p}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_clk_p}] -set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_clk_p}] +set_property SLEW FAST [get_ports ddr3_clk_p] +set_property VCCAUX_IO HIGH [get_ports ddr3_clk_p] +set_property IOSTANDARD DIFF_SSTL15 [get_ports ddr3_clk_p] # ddram:0.clk_n -set_property LOC AC12 [get_ports {ddr3_clk_n}] -set_property SLEW FAST [get_ports {ddr3_clk_n}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_clk_n}] -set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_clk_n}] +set_property PACKAGE_PIN AB12 [get_ports ddr3_clk_p] +set_property PACKAGE_PIN AC12 [get_ports ddr3_clk_n] +set_property SLEW FAST [get_ports ddr3_clk_n] +set_property IOSTANDARD DIFF_SSTL15 [get_ports ddr3_clk_n] # ddram:0.cke -set_property LOC AA13 [get_ports {ddr3_cke}] -set_property SLEW FAST [get_ports {ddr3_cke}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_cke}] -set_property IOSTANDARD SSTL15 [get_ports {ddr3_cke}] +set_property PACKAGE_PIN AA13 [get_ports ddr3_cke] +set_property SLEW FAST [get_ports ddr3_cke] +set_property VCCAUX_IO HIGH [get_ports ddr3_cke] +set_property IOSTANDARD SSTL15 [get_ports ddr3_cke] # ddram:0.odt -set_property LOC AD13 [get_ports {ddr3_odt}] -set_property SLEW FAST [get_ports {ddr3_odt}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_odt}] -set_property IOSTANDARD SSTL15 [get_ports {ddr3_odt}] +set_property PACKAGE_PIN AD13 [get_ports ddr3_odt] +set_property SLEW FAST [get_ports ddr3_odt] +set_property VCCAUX_IO HIGH [get_ports ddr3_odt] +set_property IOSTANDARD SSTL15 [get_ports ddr3_odt] # ddram:0.reset_n -set_property LOC AB7 [get_ports {ddr3_reset_n}] -set_property SLEW FAST [get_ports {ddr3_reset_n}] -set_property VCCAUX_IO HIGH [get_ports {ddr3_reset_n}] -set_property IOSTANDARD SSTL15 [get_ports {ddr3_reset_n}] -set_property SLEW SLOW [get_ports {ddr3_reset_n}] +set_property PACKAGE_PIN AB7 [get_ports ddr3_reset_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_reset_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_reset_n] +set_property SLEW SLOW [get_ports ddr3_reset_n] # user_led:0 -set_property LOC U9 [get_ports {led[0]}] +set_property PACKAGE_PIN U9 [get_ports {led[0]}] set_property IOSTANDARD LVCMOS15 [get_ports {led[0]}] set_property SLEW SLOW [get_ports {led[0]}] # user_led:1 -set_property LOC V12 [get_ports {led[1]}] +set_property PACKAGE_PIN V12 [get_ports {led[1]}] set_property IOSTANDARD LVCMOS15 [get_ports {led[1]}] set_property SLEW SLOW [get_ports {led[1]}] # user_led:2 -set_property LOC V13 [get_ports {led[2]}] +set_property PACKAGE_PIN V13 [get_ports {led[2]}] set_property IOSTANDARD LVCMOS15 [get_ports {led[2]}] set_property SLEW SLOW [get_ports {led[2]}] # user_led:3 -set_property LOC W13 [get_ports {led[3]}] +set_property PACKAGE_PIN W13 [get_ports {led[3]}] set_property IOSTANDARD LVCMOS15 [get_ports {led[3]}] set_property SLEW SLOW [get_ports {led[3]}] @@ -747,4 +738,3 @@ set_property CFGBVS GND [current_design] ################################################################################ -create_clock -name i_clk200_p -period 5.0 [get_ports i_clk200_p] diff --git a/example_demo/enclustra_kx2_st1/enclustra_mb.xdc b/example_demo/enclustra_kx2_st1/enclustra_mb.xdc new file mode 100755 index 0000000..6e4c428 --- /dev/null +++ b/example_demo/enclustra_kx2_st1/enclustra_mb.xdc @@ -0,0 +1,740 @@ +################################################################################ +# IO constraints +################################################################################ +# cpu_reset_n:0 +set_property PACKAGE_PIN C22 [get_ports i_rst_n] +set_property IOSTANDARD LVCMOS18 [get_ports i_rst_n] +# set_property -dict {PACKAGE_PIN AD23 IOSTANDARD LVCMOS18} [get_ports btn] + +# clk200:0.p +set_property IOSTANDARD LVDS [get_ports i_clk200_clk_p] + +# clk200:0.n +set_property PACKAGE_PIN AB11 [get_ports i_clk200_clk_p] +set_property PACKAGE_PIN AC11 [get_ports i_clk200_clk_n] +set_property IOSTANDARD LVDS [get_ports i_clk200_clk_n] + +# serial:0.tx +set_property PACKAGE_PIN A20 [get_ports uart_txd] +set_property IOSTANDARD LVCMOS18 [get_ports uart_txd] + +# serial:0.rx +set_property PACKAGE_PIN B20 [get_ports uart_rxd] +set_property IOSTANDARD LVCMOS18 [get_ports uart_rxd] + +# ddram:0.a +set_property PACKAGE_PIN AE11 [get_ports {ddr3_addr[0]}] +set_property SLEW FAST [get_ports {ddr3_addr[0]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[0]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[0]}] + +# ddram:0.a +set_property PACKAGE_PIN AF9 [get_ports {ddr3_addr[1]}] +set_property SLEW FAST [get_ports {ddr3_addr[1]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[1]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[1]}] + +# ddram:0.a +set_property PACKAGE_PIN AD10 [get_ports {ddr3_addr[2]}] +set_property SLEW FAST [get_ports {ddr3_addr[2]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[2]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[2]}] + +# ddram:0.a +set_property PACKAGE_PIN AB10 [get_ports {ddr3_addr[3]}] +set_property SLEW FAST [get_ports {ddr3_addr[3]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[3]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[3]}] + +# ddram:0.a +set_property PACKAGE_PIN AA9 [get_ports {ddr3_addr[4]}] +set_property SLEW FAST [get_ports {ddr3_addr[4]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[4]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[4]}] + +# ddram:0.a +set_property PACKAGE_PIN AB9 [get_ports {ddr3_addr[5]}] +set_property SLEW FAST [get_ports {ddr3_addr[5]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[5]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[5]}] + +# ddram:0.a +set_property PACKAGE_PIN AA8 [get_ports {ddr3_addr[6]}] +set_property SLEW FAST [get_ports {ddr3_addr[6]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[6]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[6]}] + +# ddram:0.a +set_property PACKAGE_PIN AC8 [get_ports {ddr3_addr[7]}] +set_property SLEW FAST [get_ports {ddr3_addr[7]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[7]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[7]}] + +# ddram:0.a +set_property PACKAGE_PIN AA7 [get_ports {ddr3_addr[8]}] +set_property SLEW FAST [get_ports {ddr3_addr[8]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[8]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[8]}] + +# ddram:0.a +set_property PACKAGE_PIN AE8 [get_ports {ddr3_addr[9]}] +set_property SLEW FAST [get_ports {ddr3_addr[9]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[9]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[9]}] + +# ddram:0.a +set_property PACKAGE_PIN AF10 [get_ports {ddr3_addr[10]}] +set_property SLEW FAST [get_ports {ddr3_addr[10]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[10]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[10]}] + +# ddram:0.a +set_property PACKAGE_PIN AD8 [get_ports {ddr3_addr[11]}] +set_property SLEW FAST [get_ports {ddr3_addr[11]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[11]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[11]}] + +# ddram:0.a +set_property PACKAGE_PIN AE10 [get_ports {ddr3_addr[12]}] +set_property SLEW FAST [get_ports {ddr3_addr[12]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[12]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[12]}] + +# ddram:0.a +set_property PACKAGE_PIN AF8 [get_ports {ddr3_addr[13]}] +set_property SLEW FAST [get_ports {ddr3_addr[13]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[13]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[13]}] + +# ddram:0.a +set_property PACKAGE_PIN AC7 [get_ports {ddr3_addr[14]}] +set_property SLEW FAST [get_ports {ddr3_addr[14]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_addr[14]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_addr[14]}] + +# ddram:0.ba +set_property PACKAGE_PIN AD11 [get_ports {ddr3_ba[0]}] +set_property SLEW FAST [get_ports {ddr3_ba[0]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_ba[0]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_ba[0]}] + +# ddram:0.ba +set_property PACKAGE_PIN AA10 [get_ports {ddr3_ba[1]}] +set_property SLEW FAST [get_ports {ddr3_ba[1]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_ba[1]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_ba[1]}] + +# ddram:0.ba +set_property PACKAGE_PIN AF12 [get_ports {ddr3_ba[2]}] +set_property SLEW FAST [get_ports {ddr3_ba[2]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_ba[2]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_ba[2]}] + +# ddram:0.ras_n +set_property PACKAGE_PIN AE13 [get_ports ddr3_ras_n] +set_property SLEW FAST [get_ports ddr3_ras_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_ras_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_ras_n] + +# ddram:0.cas_n +set_property PACKAGE_PIN AE12 [get_ports ddr3_cas_n] +set_property SLEW FAST [get_ports ddr3_cas_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_cas_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_cas_n] + +# ddram:0.we_n +set_property PACKAGE_PIN AA12 [get_ports ddr3_we_n] +set_property SLEW FAST [get_ports ddr3_we_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_we_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_we_n] + +# ddram:0.cs_n +set_property PACKAGE_PIN Y12 [get_ports ddr3_cs_n] +set_property SLEW FAST [get_ports ddr3_cs_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_cs_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_cs_n] + +# ddram:0.dm +set_property PACKAGE_PIN Y3 [get_ports {ddr3_dm[0]}] +set_property SLEW FAST [get_ports {ddr3_dm[0]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[0]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[0]}] + +# ddram:0.dm +set_property PACKAGE_PIN U5 [get_ports {ddr3_dm[1]}] +set_property SLEW FAST [get_ports {ddr3_dm[1]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[1]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[1]}] + +# ddram:0.dm +set_property PACKAGE_PIN AD4 [get_ports {ddr3_dm[2]}] +set_property SLEW FAST [get_ports {ddr3_dm[2]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[2]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[2]}] + +# ddram:0.dm +set_property PACKAGE_PIN AC4 [get_ports {ddr3_dm[3]}] +set_property SLEW FAST [get_ports {ddr3_dm[3]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[3]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[3]}] + +# ddram:0.dm +set_property PACKAGE_PIN AF19 [get_ports {ddr3_dm[4]}] +set_property SLEW FAST [get_ports {ddr3_dm[4]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[4]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[4]}] + +# ddram:0.dm +set_property PACKAGE_PIN AC16 [get_ports {ddr3_dm[5]}] +set_property SLEW FAST [get_ports {ddr3_dm[5]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[5]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[5]}] + +# ddram:0.dm +set_property PACKAGE_PIN AB19 [get_ports {ddr3_dm[6]}] +set_property SLEW FAST [get_ports {ddr3_dm[6]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[6]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[6]}] + +# ddram:0.dm +set_property PACKAGE_PIN V14 [get_ports {ddr3_dm[7]}] +set_property SLEW FAST [get_ports {ddr3_dm[7]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dm[7]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dm[7]}] + +# ddram:0.dq +set_property PACKAGE_PIN AA2 [get_ports {ddr3_dq[0]}] +set_property SLEW FAST [get_ports {ddr3_dq[0]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[0]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[0]}] + +# ddram:0.dq +set_property PACKAGE_PIN Y2 [get_ports {ddr3_dq[1]}] +set_property SLEW FAST [get_ports {ddr3_dq[1]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[1]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[1]}] + +# ddram:0.dq +set_property PACKAGE_PIN AB2 [get_ports {ddr3_dq[2]}] +set_property SLEW FAST [get_ports {ddr3_dq[2]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[2]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[2]}] + +# ddram:0.dq +set_property PACKAGE_PIN V1 [get_ports {ddr3_dq[3]}] +set_property SLEW FAST [get_ports {ddr3_dq[3]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[3]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[3]}] + +# ddram:0.dq +set_property PACKAGE_PIN Y1 [get_ports {ddr3_dq[4]}] +set_property SLEW FAST [get_ports {ddr3_dq[4]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[4]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[4]}] + +# ddram:0.dq +set_property PACKAGE_PIN W1 [get_ports {ddr3_dq[5]}] +set_property SLEW FAST [get_ports {ddr3_dq[5]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[5]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[5]}] + +# ddram:0.dq +set_property PACKAGE_PIN AC2 [get_ports {ddr3_dq[6]}] +set_property SLEW FAST [get_ports {ddr3_dq[6]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[6]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[6]}] + +# ddram:0.dq +set_property PACKAGE_PIN V2 [get_ports {ddr3_dq[7]}] +set_property SLEW FAST [get_ports {ddr3_dq[7]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[7]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[7]}] + +# ddram:0.dq +set_property PACKAGE_PIN W3 [get_ports {ddr3_dq[8]}] +set_property SLEW FAST [get_ports {ddr3_dq[8]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[8]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[8]}] + +# ddram:0.dq +set_property PACKAGE_PIN V3 [get_ports {ddr3_dq[9]}] +set_property SLEW FAST [get_ports {ddr3_dq[9]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[9]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[9]}] + +# ddram:0.dq +set_property PACKAGE_PIN U1 [get_ports {ddr3_dq[10]}] +set_property SLEW FAST [get_ports {ddr3_dq[10]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[10]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[10]}] + +# ddram:0.dq +set_property PACKAGE_PIN U7 [get_ports {ddr3_dq[11]}] +set_property SLEW FAST [get_ports {ddr3_dq[11]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[11]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[11]}] + +# ddram:0.dq +set_property PACKAGE_PIN U6 [get_ports {ddr3_dq[12]}] +set_property SLEW FAST [get_ports {ddr3_dq[12]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[12]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[12]}] + +# ddram:0.dq +set_property PACKAGE_PIN V4 [get_ports {ddr3_dq[13]}] +set_property SLEW FAST [get_ports {ddr3_dq[13]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[13]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[13]}] + +# ddram:0.dq +set_property PACKAGE_PIN V6 [get_ports {ddr3_dq[14]}] +set_property SLEW FAST [get_ports {ddr3_dq[14]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[14]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[14]}] + +# ddram:0.dq +set_property PACKAGE_PIN U2 [get_ports {ddr3_dq[15]}] +set_property SLEW FAST [get_ports {ddr3_dq[15]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[15]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[15]}] + +# ddram:0.dq +set_property PACKAGE_PIN AE3 [get_ports {ddr3_dq[16]}] +set_property SLEW FAST [get_ports {ddr3_dq[16]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[16]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[16]}] + +# ddram:0.dq +set_property PACKAGE_PIN AE6 [get_ports {ddr3_dq[17]}] +set_property SLEW FAST [get_ports {ddr3_dq[17]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[17]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[17]}] + +# ddram:0.dq +set_property PACKAGE_PIN AF3 [get_ports {ddr3_dq[18]}] +set_property SLEW FAST [get_ports {ddr3_dq[18]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[18]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[18]}] + +# ddram:0.dq +set_property PACKAGE_PIN AD1 [get_ports {ddr3_dq[19]}] +set_property SLEW FAST [get_ports {ddr3_dq[19]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[19]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[19]}] + +# ddram:0.dq +set_property PACKAGE_PIN AE1 [get_ports {ddr3_dq[20]}] +set_property SLEW FAST [get_ports {ddr3_dq[20]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[20]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[20]}] + +# ddram:0.dq +set_property PACKAGE_PIN AE2 [get_ports {ddr3_dq[21]}] +set_property SLEW FAST [get_ports {ddr3_dq[21]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[21]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[21]}] + +# ddram:0.dq +set_property PACKAGE_PIN AF2 [get_ports {ddr3_dq[22]}] +set_property SLEW FAST [get_ports {ddr3_dq[22]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[22]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[22]}] + +# ddram:0.dq +set_property PACKAGE_PIN AE5 [get_ports {ddr3_dq[23]}] +set_property SLEW FAST [get_ports {ddr3_dq[23]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[23]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[23]}] + +# ddram:0.dq +set_property PACKAGE_PIN AD5 [get_ports {ddr3_dq[24]}] +set_property SLEW FAST [get_ports {ddr3_dq[24]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[24]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[24]}] + +# ddram:0.dq +set_property PACKAGE_PIN Y5 [get_ports {ddr3_dq[25]}] +set_property SLEW FAST [get_ports {ddr3_dq[25]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[25]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[25]}] + +# ddram:0.dq +set_property PACKAGE_PIN AC6 [get_ports {ddr3_dq[26]}] +set_property SLEW FAST [get_ports {ddr3_dq[26]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[26]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[26]}] + +# ddram:0.dq +set_property PACKAGE_PIN Y6 [get_ports {ddr3_dq[27]}] +set_property SLEW FAST [get_ports {ddr3_dq[27]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[27]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[27]}] + +# ddram:0.dq +set_property PACKAGE_PIN AB4 [get_ports {ddr3_dq[28]}] +set_property SLEW FAST [get_ports {ddr3_dq[28]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[28]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[28]}] + +# ddram:0.dq +set_property PACKAGE_PIN AD6 [get_ports {ddr3_dq[29]}] +set_property SLEW FAST [get_ports {ddr3_dq[29]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[29]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[29]}] + +# ddram:0.dq +set_property PACKAGE_PIN AB6 [get_ports {ddr3_dq[30]}] +set_property SLEW FAST [get_ports {ddr3_dq[30]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[30]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[30]}] + +# ddram:0.dq +set_property PACKAGE_PIN AC3 [get_ports {ddr3_dq[31]}] +set_property SLEW FAST [get_ports {ddr3_dq[31]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[31]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[31]}] + +# ddram:0.dq +set_property PACKAGE_PIN AD16 [get_ports {ddr3_dq[32]}] +set_property SLEW FAST [get_ports {ddr3_dq[32]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[32]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[32]}] + +# ddram:0.dq +set_property PACKAGE_PIN AE17 [get_ports {ddr3_dq[33]}] +set_property SLEW FAST [get_ports {ddr3_dq[33]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[33]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[33]}] + +# ddram:0.dq +set_property PACKAGE_PIN AF15 [get_ports {ddr3_dq[34]}] +set_property SLEW FAST [get_ports {ddr3_dq[34]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[34]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[34]}] + +# ddram:0.dq +set_property PACKAGE_PIN AF20 [get_ports {ddr3_dq[35]}] +set_property SLEW FAST [get_ports {ddr3_dq[35]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[35]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[35]}] + +# ddram:0.dq +set_property PACKAGE_PIN AD15 [get_ports {ddr3_dq[36]}] +set_property SLEW FAST [get_ports {ddr3_dq[36]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[36]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[36]}] + +# ddram:0.dq +set_property PACKAGE_PIN AF14 [get_ports {ddr3_dq[37]}] +set_property SLEW FAST [get_ports {ddr3_dq[37]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[37]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[37]}] + +# ddram:0.dq +set_property PACKAGE_PIN AE15 [get_ports {ddr3_dq[38]}] +set_property SLEW FAST [get_ports {ddr3_dq[38]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[38]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[38]}] + +# ddram:0.dq +set_property PACKAGE_PIN AF17 [get_ports {ddr3_dq[39]}] +set_property SLEW FAST [get_ports {ddr3_dq[39]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[39]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[39]}] + +# ddram:0.dq +set_property PACKAGE_PIN AA14 [get_ports {ddr3_dq[40]}] +set_property SLEW FAST [get_ports {ddr3_dq[40]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[40]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[40]}] + +# ddram:0.dq +set_property PACKAGE_PIN AA15 [get_ports {ddr3_dq[41]}] +set_property SLEW FAST [get_ports {ddr3_dq[41]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[41]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[41]}] + +# ddram:0.dq +set_property PACKAGE_PIN AC14 [get_ports {ddr3_dq[42]}] +set_property SLEW FAST [get_ports {ddr3_dq[42]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[42]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[42]}] + +# ddram:0.dq +set_property PACKAGE_PIN AD14 [get_ports {ddr3_dq[43]}] +set_property SLEW FAST [get_ports {ddr3_dq[43]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[43]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[43]}] + +# ddram:0.dq +set_property PACKAGE_PIN AB14 [get_ports {ddr3_dq[44]}] +set_property SLEW FAST [get_ports {ddr3_dq[44]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[44]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[44]}] + +# ddram:0.dq +set_property PACKAGE_PIN AB15 [get_ports {ddr3_dq[45]}] +set_property SLEW FAST [get_ports {ddr3_dq[45]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[45]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[45]}] + +# ddram:0.dq +set_property PACKAGE_PIN AA17 [get_ports {ddr3_dq[46]}] +set_property SLEW FAST [get_ports {ddr3_dq[46]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[46]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[46]}] + +# ddram:0.dq +set_property PACKAGE_PIN AA18 [get_ports {ddr3_dq[47]}] +set_property SLEW FAST [get_ports {ddr3_dq[47]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[47]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[47]}] + +# ddram:0.dq +set_property PACKAGE_PIN AB20 [get_ports {ddr3_dq[48]}] +set_property SLEW FAST [get_ports {ddr3_dq[48]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[48]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[48]}] + +# ddram:0.dq +set_property PACKAGE_PIN AD19 [get_ports {ddr3_dq[49]}] +set_property SLEW FAST [get_ports {ddr3_dq[49]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[49]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[49]}] + +# ddram:0.dq +set_property PACKAGE_PIN AC19 [get_ports {ddr3_dq[50]}] +set_property SLEW FAST [get_ports {ddr3_dq[50]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[50]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[50]}] + +# ddram:0.dq +set_property PACKAGE_PIN AA20 [get_ports {ddr3_dq[51]}] +set_property SLEW FAST [get_ports {ddr3_dq[51]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[51]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[51]}] + +# ddram:0.dq +set_property PACKAGE_PIN AA19 [get_ports {ddr3_dq[52]}] +set_property SLEW FAST [get_ports {ddr3_dq[52]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[52]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[52]}] + +# ddram:0.dq +set_property PACKAGE_PIN AC17 [get_ports {ddr3_dq[53]}] +set_property SLEW FAST [get_ports {ddr3_dq[53]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[53]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[53]}] + +# ddram:0.dq +set_property PACKAGE_PIN AD18 [get_ports {ddr3_dq[54]}] +set_property SLEW FAST [get_ports {ddr3_dq[54]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[54]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[54]}] + +# ddram:0.dq +set_property PACKAGE_PIN AB17 [get_ports {ddr3_dq[55]}] +set_property SLEW FAST [get_ports {ddr3_dq[55]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[55]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[55]}] + +# ddram:0.dq +set_property PACKAGE_PIN W15 [get_ports {ddr3_dq[56]}] +set_property SLEW FAST [get_ports {ddr3_dq[56]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[56]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[56]}] + +# ddram:0.dq +set_property PACKAGE_PIN W16 [get_ports {ddr3_dq[57]}] +set_property SLEW FAST [get_ports {ddr3_dq[57]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[57]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[57]}] + +# ddram:0.dq +set_property PACKAGE_PIN W14 [get_ports {ddr3_dq[58]}] +set_property SLEW FAST [get_ports {ddr3_dq[58]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[58]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[58]}] + +# ddram:0.dq +set_property PACKAGE_PIN V16 [get_ports {ddr3_dq[59]}] +set_property SLEW FAST [get_ports {ddr3_dq[59]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[59]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[59]}] + +# ddram:0.dq +set_property PACKAGE_PIN V19 [get_ports {ddr3_dq[60]}] +set_property SLEW FAST [get_ports {ddr3_dq[60]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[60]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[60]}] + +# ddram:0.dq +set_property PACKAGE_PIN V17 [get_ports {ddr3_dq[61]}] +set_property SLEW FAST [get_ports {ddr3_dq[61]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[61]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[61]}] + +# ddram:0.dq +set_property PACKAGE_PIN V18 [get_ports {ddr3_dq[62]}] +set_property SLEW FAST [get_ports {ddr3_dq[62]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[62]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[62]}] + +# ddram:0.dq +set_property PACKAGE_PIN Y17 [get_ports {ddr3_dq[63]}] +set_property SLEW FAST [get_ports {ddr3_dq[63]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dq[63]}] +set_property IOSTANDARD SSTL15 [get_ports {ddr3_dq[63]}] + +# ddram:0.dqs_p +set_property SLEW FAST [get_ports {ddr3_dqs_p[0]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[0]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[0]}] + +# ddram:0.dqs_p +set_property SLEW FAST [get_ports {ddr3_dqs_p[1]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[1]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[1]}] + +# ddram:0.dqs_p +set_property SLEW FAST [get_ports {ddr3_dqs_p[2]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[2]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[2]}] + +# ddram:0.dqs_p +set_property SLEW FAST [get_ports {ddr3_dqs_p[3]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[3]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[3]}] + +# ddram:0.dqs_p +set_property SLEW FAST [get_ports {ddr3_dqs_p[4]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[4]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[4]}] + +# ddram:0.dqs_p +set_property SLEW FAST [get_ports {ddr3_dqs_p[5]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[5]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[5]}] + +# ddram:0.dqs_p +set_property SLEW FAST [get_ports {ddr3_dqs_p[6]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[6]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[6]}] + +# ddram:0.dqs_p +set_property SLEW FAST [get_ports {ddr3_dqs_p[7]}] +set_property VCCAUX_IO HIGH [get_ports {ddr3_dqs_p[7]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_p[7]}] + +# ddram:0.dqs_n +set_property PACKAGE_PIN AB1 [get_ports {ddr3_dqs_p[0]}] +set_property PACKAGE_PIN AC1 [get_ports {ddr3_dqs_n[0]}] +set_property SLEW FAST [get_ports {ddr3_dqs_n[0]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[0]}] + +# ddram:0.dqs_n +set_property PACKAGE_PIN W6 [get_ports {ddr3_dqs_p[1]}] +set_property PACKAGE_PIN W5 [get_ports {ddr3_dqs_n[1]}] +set_property SLEW FAST [get_ports {ddr3_dqs_n[1]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[1]}] + +# ddram:0.dqs_n +set_property PACKAGE_PIN AF5 [get_ports {ddr3_dqs_p[2]}] +set_property PACKAGE_PIN AF4 [get_ports {ddr3_dqs_n[2]}] +set_property SLEW FAST [get_ports {ddr3_dqs_n[2]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[2]}] + +# ddram:0.dqs_n +set_property PACKAGE_PIN AA5 [get_ports {ddr3_dqs_p[3]}] +set_property PACKAGE_PIN AB5 [get_ports {ddr3_dqs_n[3]}] +set_property SLEW FAST [get_ports {ddr3_dqs_n[3]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[3]}] + +# ddram:0.dqs_n +set_property PACKAGE_PIN AE18 [get_ports {ddr3_dqs_p[4]}] +set_property PACKAGE_PIN AF18 [get_ports {ddr3_dqs_n[4]}] +set_property SLEW FAST [get_ports {ddr3_dqs_n[4]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[4]}] + +# ddram:0.dqs_n +set_property PACKAGE_PIN Y15 [get_ports {ddr3_dqs_p[5]}] +set_property PACKAGE_PIN Y16 [get_ports {ddr3_dqs_n[5]}] +set_property SLEW FAST [get_ports {ddr3_dqs_n[5]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[5]}] + +# ddram:0.dqs_n +set_property PACKAGE_PIN AD20 [get_ports {ddr3_dqs_p[6]}] +set_property PACKAGE_PIN AE20 [get_ports {ddr3_dqs_n[6]}] +set_property SLEW FAST [get_ports {ddr3_dqs_n[6]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[6]}] + +# ddram:0.dqs_n +set_property PACKAGE_PIN W18 [get_ports {ddr3_dqs_p[7]}] +set_property PACKAGE_PIN W19 [get_ports {ddr3_dqs_n[7]}] +set_property SLEW FAST [get_ports {ddr3_dqs_n[7]}] +set_property IOSTANDARD DIFF_SSTL15 [get_ports {ddr3_dqs_n[7]}] + +# ddram:0.clk_p +set_property SLEW FAST [get_ports ddr3_ck_p] +set_property VCCAUX_IO HIGH [get_ports ddr3_ck_p] +set_property IOSTANDARD DIFF_SSTL15 [get_ports ddr3_ck_p] + +# ddram:0.clk_n +set_property PACKAGE_PIN AB12 [get_ports ddr3_ck_p] +set_property PACKAGE_PIN AC12 [get_ports ddr3_ck_n] +set_property SLEW FAST [get_ports ddr3_ck_n] +set_property IOSTANDARD DIFF_SSTL15 [get_ports ddr3_ck_n] + +# ddram:0.cke +set_property PACKAGE_PIN AA13 [get_ports ddr3_cke] +set_property SLEW FAST [get_ports ddr3_cke] +set_property VCCAUX_IO HIGH [get_ports ddr3_cke] +set_property IOSTANDARD SSTL15 [get_ports ddr3_cke] + +# ddram:0.odt +set_property PACKAGE_PIN AD13 [get_ports ddr3_odt] +set_property SLEW FAST [get_ports ddr3_odt] +set_property VCCAUX_IO HIGH [get_ports ddr3_odt] +set_property IOSTANDARD SSTL15 [get_ports ddr3_odt] + +# ddram:0.reset_n +set_property PACKAGE_PIN AB7 [get_ports ddr3_reset_n] +set_property VCCAUX_IO HIGH [get_ports ddr3_reset_n] +set_property IOSTANDARD SSTL15 [get_ports ddr3_reset_n] +set_property SLEW SLOW [get_ports ddr3_reset_n] + +## user_led:0 +#set_property PACKAGE_PIN U9 [get_ports {led[0]}] +#set_property IOSTANDARD LVCMOS15 [get_ports {led[0]}] +#set_property SLEW SLOW [get_ports {led[0]}] + +## user_led:1 +#set_property PACKAGE_PIN V12 [get_ports {led[1]}] +#set_property IOSTANDARD LVCMOS15 [get_ports {led[1]}] +#set_property SLEW SLOW [get_ports {led[1]}] + +## user_led:2 +#set_property PACKAGE_PIN V13 [get_ports {led[2]}] +#set_property IOSTANDARD LVCMOS15 [get_ports {led[2]}] +#set_property SLEW SLOW [get_ports {led[2]}] + +## user_led:3 +#set_property PACKAGE_PIN W13 [get_ports {led[3]}] +#set_property IOSTANDARD LVCMOS15 [get_ports {led[3]}] +#set_property SLEW SLOW [get_ports {led[3]}] + + +################################################################################ +# Design constraints +################################################################################ + +set_property CONFIG_VOLTAGE 1.8 [current_design] + +set_property CFGBVS GND [current_design] + + +################################################################################ +# Clock constraints +################################################################################ + + diff --git a/formal/ddr3_multiconfig_ecc.sby b/formal/ddr3_multiconfig_ecc.sby index 283aac5..596b442 100644 --- a/formal/ddr3_multiconfig_ecc.sby +++ b/formal/ddr3_multiconfig_ecc.sby @@ -13,7 +13,7 @@ prf8lanes_100MHz_ECC_3_err prf_ECC3 opt_8lanes opt_100MHz prf: mode prove prf: depth 7 prf_ECC3: mode prove -prf_ECC3: depth 5 +prf_ECC3: depth 7 [engines] prf: smtbmc diff --git a/rtl/axi/ddr3_top_axi.v b/rtl/axi/ddr3_top_axi.v index cc37bc5..d8c1d05 100644 --- a/rtl/axi/ddr3_top_axi.v +++ b/rtl/axi/ddr3_top_axi.v @@ -45,7 +45,7 @@ module ddr3_top_axi #( ODELAY_SUPPORTED = 0, //set to 1 when ODELAYE2 is supported SECOND_WISHBONE = 0, //set to 1 if 2nd wishbone for debugging is needed WB_ERROR = 0, // set to 1 to support Wishbone error (asserts at ECC double bit error) - SKIP_INTERNAL_TEST = 0, // skip built-in self test (would require >2 seconds of internal test right after calibration) + parameter[1:0] BIST_MODE = 2, // 0 = No BIST, 1 = run through all address space ONCE , 2 = run through all address space for every test (burst w/r, random w/r, alternating r/w) parameter[1:0] ECC_ENABLE = 0, // set to 1 or 2 to add ECC (1 = Side-band ECC per burst, 2 = Side-band ECC per 8 bursts , 3 = Inline ECC ) parameter[1:0] DIC = 2'b00, //Output Driver Impedance Control (2'b00 = RZQ/6, 2'b01 = RZQ/7, RZQ = 240ohms) (only change when you know what you are doing) parameter[2:0] RTT_NOM = 3'b011, //RTT Nominal (3'b000 = disabled, 3'b001 = RZQ/4, 3'b010 = RZQ/2 , 3'b011 = RZQ/6, RZQ = 240ohms) (only change when you know what you are doing) @@ -166,7 +166,7 @@ ddr3_top #( .WB2_ADDR_BITS(WB2_ADDR_BITS), //width of 2nd wishbone address bus .WB2_DATA_BITS(WB2_DATA_BITS), //width of 2nd wishbone data bus .WB_ERROR(WB_ERROR), // set to 1 to support Wishbone error (asserts at ECC double bit error) - .SKIP_INTERNAL_TEST(SKIP_INTERNAL_TEST), // skip built-in self test (would require >2 seconds of internal test right after calibration) + .BIST_MODE(BIST_MODE), // 0 = No BIST, 1 = run through all address space ONCE , 2 = run through all address space for every test (burst w/r, random w/r, alternating r/w) .ECC_ENABLE(ECC_ENABLE), // set to 1 or 2 to add ECC (1 = Side-band ECC per burst, 2 = Side-band ECC per 8 bursts , 3 = Inline ECC ) .DIC(DIC), // Output Driver Impedance Control (2'b00 = RZQ/6, 2'b01 = RZQ/7, RZQ = 240ohms) (only change when you know what you are doing) .RTT_NOM(RTT_NOM), //RTT Nominal (3'b000 = disabled, 3'b001 = RZQ/4, 3'b010 = RZQ/2 , 3'b011 = RZQ/6, RZQ = 240ohms) (only change when you know what you are doing) diff --git a/rtl/ddr3_controller.v b/rtl/ddr3_controller.v index 56ee1d6..198e80c 100644 --- a/rtl/ddr3_controller.v +++ b/rtl/ddr3_controller.v @@ -38,7 +38,7 @@ // Comments are continuously added on this RTL for better readability //`define FORMAL_COVER //skip reset sequence during formal verification to fit in cover depth -`default_nettype none +// `default_nettype none `timescale 1ps / 1ps // // speed bin @@ -69,7 +69,7 @@ module ddr3_controller #( ODELAY_SUPPORTED = 1, //set to 1 when ODELAYE2 is supported SECOND_WISHBONE = 0, //set to 1 if 2nd wishbone is needed WB_ERROR = 0, // set to 1 to support Wishbone error (asserts at ECC double bit error) - SKIP_INTERNAL_TEST = 1, // skip built-in self test (would require >2 seconds of internal test right after calibration) + parameter[1:0] BIST_MODE = 1, // 0 = No BIST, 1 = run through all address space ONCE , 2 = run through all address space for every test (burst w/r, random w/r, alternating r/w) parameter[1:0] ECC_ENABLE = 0, // set to 1 or 2 to add ECC (1 = Side-band ECC per burst, 2 = Side-band ECC per 8 bursts , 3 = Inline ECC ) (only change when you know what you are doing) parameter[1:0] DIC = 2'b00, //Output Driver Impedance Control (2'b00 = RZQ/6, 2'b01 = RZQ/7, RZQ = 240ohms) (only change when you know what you are doing) parameter[2:0] RTT_NOM = 3'b011, //RTT Nominal (3'b000 = disabled, 3'b001 = RZQ/4, 3'b010 = RZQ/2 , 3'b011 = RZQ/6, RZQ = 240ohms) @@ -135,7 +135,7 @@ module ddr3_controller #( output reg o_phy_write_leveling_calib, output wire o_phy_reset, // Done Calibration pin - output wire o_calib_complete, + (* mark_debug = "true" *) output wire o_calib_complete, // Debug port output wire [31:0] o_debug1, // output wire [31:0] o_debug2, @@ -269,6 +269,7 @@ module ddr3_controller #( localparam[3:0] ACTIVATE_TO_PRECHARGE_DELAY = find_delay(ps_to_nCK(tRAS), ACTIVATE_SLOT, PRECHARGE_SLOT); localparam[3:0] ACTIVATE_TO_WRITE_DELAY = find_delay(ps_to_nCK(tRCD), ACTIVATE_SLOT, WRITE_SLOT); //3 localparam[3:0] ACTIVATE_TO_READ_DELAY = find_delay(ps_to_nCK(tRCD), ACTIVATE_SLOT, READ_SLOT); //2 + localparam[3:0] ACTIVATE_TO_ACTIVATE_DELAY = find_delay(ps_to_nCK(7500), ACTIVATE_SLOT, ACTIVATE_SLOT); //TRRD localparam[3:0] READ_TO_WRITE_DELAY = find_delay((CL_nCK + tCCD + 2 - CWL_nCK), READ_SLOT, WRITE_SLOT); //2 localparam[3:0] READ_TO_READ_DELAY = 0; localparam[3:0] READ_TO_PRECHARGE_DELAY = find_delay(ps_to_nCK(tRTP), READ_SLOT, PRECHARGE_SLOT); //1 @@ -278,7 +279,7 @@ module ddr3_controller #( /* verilator lint_on WIDTHEXPAND */ localparam PRE_REFRESH_DELAY = WRITE_TO_PRECHARGE_DELAY + 1; `ifdef FORMAL - (*keep*) wire[3:0] f_PRECHARGE_TO_ACTIVATE_DELAY, f_ACTIVATE_TO_PRECHARGE_DELAY, f_ACTIVATE_TO_WRITE_DELAY, f_ACTIVATE_TO_READ_DELAY, + (*keep*) wire[3:0] f_PRECHARGE_TO_ACTIVATE_DELAY, f_ACTIVATE_TO_PRECHARGE_DELAY, f_ACTIVATE_TO_WRITE_DELAY, f_ACTIVATE_TO_READ_DELAY, f_ACTIVATE_TO_ACTIVATE_DELAY, f_READ_TO_WRITE_DELAY, f_READ_TO_READ_DELAY, f_READ_TO_PRECHARGE_DELAY, f_WRITE_TO_WRITE_DELAY, f_WRITE_TO_READ_DELAY, f_WRITE_TO_PRECHARGE_DELAY; assign f_PRECHARGE_TO_ACTIVATE_DELAY = PRECHARGE_TO_ACTIVATE_DELAY; @@ -291,6 +292,7 @@ module ddr3_controller #( assign f_WRITE_TO_WRITE_DELAY = WRITE_TO_WRITE_DELAY; assign f_WRITE_TO_READ_DELAY = WRITE_TO_READ_DELAY; assign f_WRITE_TO_PRECHARGE_DELAY = WRITE_TO_PRECHARGE_DELAY; + assign f_ACTIVATE_TO_ACTIVATE_DELAY = ACTIVATE_TO_ACTIVATE_DELAY; `endif //MARGIN_BEFORE_ANTICIPATE is the number of columns before the column @@ -321,6 +323,7 @@ module ddr3_controller #( localparam DELAY_BEFORE_WRITE_LEVEL_FEEDBACK = STAGE2_DATA_DEPTH + ps_to_cycles(tWLO+tWLOE) + 10; //plus 10 controller clocks for possible bus latency and the delay for receiving feedback DQ from IOBUF -> IDELAY -> ISERDES localparam ECC_INFORMATION_BITS = (ECC_ENABLE == 2)? max_information_bits(wb_data_bits) : max_information_bits(wb_data_bits/8); + localparam SIM_ADDRESS_INCR_LOG2 = wb_addr_bits-2-7; // 2^(wb_addr_bits-2)/128 /*********************************************************************************************************************************************/ @@ -551,13 +554,16 @@ module ddr3_controller #( (* mark_debug = "true" *) reg calib_we = 0; reg[wb_addr_bits-1:0] calib_addr = 0; reg[wb_data_bits-1:0] calib_data = 0; + wire[wb_data_bits-1:0] calib_data_randomized; reg write_calib_odt = 0; reg write_calib_dqs = 0; reg write_calib_dq = 0; (* mark_debug = "true" *) reg prev_write_level_feedback = 1; reg[wb_data_bits-1:0] read_data_store = 0; reg[127:0] write_pattern = 0; - reg[$clog2(64):0] data_start_index[LANES-1:0]; + reg[$clog2(64):0] data_start_index[LANES-1:0]; + reg[LANES-1:0] lane_write_dq_late = 0; + reg[LANES-1:0] lane_read_dq_early = 0; (* mark_debug = "true" *) reg[4:0] odelay_data_cntvaluein[LANES-1:0]; reg[4:0] odelay_dqs_cntvaluein[LANES-1:0]; reg[4:0] idelay_data_cntvaluein[LANES-1:0]; @@ -593,9 +599,9 @@ module ddr3_controller #( reg reset_after_rank_1 = 0; // reset after calibration rank 1 to switch to rank 2 reg current_rank = 0; // test calibration - reg[wb_addr_bits-1:0] read_test_address_counter = 0, check_test_address_counter = 0; //////////////////////////////////////////////////////// - reg[31:0] write_test_address_counter = 0; - reg[31:0] correct_read_data = 0, wrong_read_data = 0; + (* mark_debug = "true" *) reg[wb_addr_bits:0] read_test_address_counter = 0, check_test_address_counter = 0; //////////////////////////////////////////////////////// + (* mark_debug = "true" *) reg[wb_addr_bits:0] write_test_address_counter = 0; + (* mark_debug = "true" *) reg[31:0] correct_read_data = 0, wrong_read_data = 0; /* verilator lint_off UNDRIVEN */ (* mark_debug = "true" *) wire sb_err_o; wire db_err_o; @@ -645,6 +651,7 @@ module ddr3_controller #( idelay_data_cntvaluein[index] = DATA_INITIAL_IDELAY_TAP[4:0]; idelay_dqs_cntvaluein[index] = DQS_INITIAL_IDELAY_TAP[4:0]; dq_target_index[index] = 0; + data_start_index[index] = 0; end end /*********************************************************************************************************************************************/ @@ -1183,70 +1190,101 @@ module ddr3_controller #( end end - for(index = 0; index < LANES; index = index + 1) begin - /* verilator lint_off WIDTH */ - // stage2_data_unaligned is the DQ_BITS*LANES*8 raw data from stage 1 so not yet aligned - // unaligned_data is 64 bits - {unaligned_data[index], { - stage2_data[0][((DQ_BITS*LANES)*7 + 8*index) +: 8], stage2_data[0][((DQ_BITS*LANES)*6 + 8*index) +: 8], - stage2_data[0][((DQ_BITS*LANES)*5 + 8*index) +: 8], stage2_data[0][((DQ_BITS*LANES)*4 + 8*index) +: 8], - stage2_data[0][((DQ_BITS*LANES)*3 + 8*index) +: 8], stage2_data[0][((DQ_BITS*LANES)*2 + 8*index) +: 8], - stage2_data[0][((DQ_BITS*LANES)*1 + 8*index) +: 8], stage2_data[0][((DQ_BITS*LANES)*0 + 8*index) +: 8] }} - <= ( { stage2_data_unaligned[((DQ_BITS*LANES)*7 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*6 + 8*index) +: 8], - stage2_data_unaligned[((DQ_BITS*LANES)*5 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*4 + 8*index) +: 8], - stage2_data_unaligned[((DQ_BITS*LANES)*3 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*2 + 8*index) +: 8], - stage2_data_unaligned[((DQ_BITS*LANES)*1 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*0 + 8*index) +: 8] } - << data_start_index[index]) | unaligned_data[index]; - /* - // Example with LANE 0: - // Burst_0 to burst_7 of unaligned LANE 0 will be extracted which will be shifted by data_start_index. - // Each 8 bits of shift means a burst will be moved to next ddr3_clk cycle, this is needed if for example - // the DQ trace is longer than the command trace where the DQ bits must be delayed by 1 ddr3_clk cycle - // to align the DQ data to the write command. - // - // Since 1 controller clk cycle will have 4 ddr3_clk cycle, and each ddr3_clk cycle is DDR: - // CONTROLLER CLK CYCLE 0: [burst0,burst1] [burst2,burst3] [burst4,burst5] [burst6,burst7] - // CONTROLLER CLK CYCLE 1: [burst0,burst1] [burst2,burst3] [burst4,burst5] [burst6,burst7] - // CONTROLLER CLK CYCLE 2: [burst0,burst1] [burst2,burst3] [burst4,burst5] [burst6,burst7] - // - // shifting by 1 burst means burst 7 will be sent on next controller clk cycle and EVERY BURST WILL SHIFT: - // CONTROLLER CLK CYCLE 0: [xxxxxx,xxxxxx] [burst0,burst1] [burst2,burst3] [burst4,burst5] - // CONTROLLER CLK CYCLE 1: [burst6,burst7] [burst0,burst1] [burst2,burst3] [burst4,burst5] - // CONTROLLER CLK CYCLE 2: [burst6,burst7] [burst0,burst1] [burst2,burst3] [burst4,burst5] - // - // the [burst6,burst7] which has to be stored and delayed until next clk cycle will be handled by unaligned_data - {unaligned_data[0], { - stage2_data[0][((64)*7 + 8*0) +: 8], stage2_data[0][((64)*6 + 8*0) +: 8], - stage2_data[0][((64)*5 + 8*0) +: 8], stage2_data[0][((64)*4 + 8*0) +: 8], - stage2_data[0][((64)*3 + 8*0) +: 8], stage2_data[0][((64)*2 + 8*0) +: 8], - stage2_data[0][((64)*1 + 8*0) +: 8], stage2_data[0][((64)*0 + 8*0) +: 8] }} - <= ( { stage2_data_unaligned[((64)*7 + 8*0) +: 8], stage2_data_unaligned[((64)*6 + 8*0) +: 8], - stage2_data_unaligned[((64)*5 + 8*0) +: 8], stage2_data_unaligned[((64)*4 + 8*0) +: 8], - stage2_data_unaligned[((64)*3 + 8*0) +: 8], stage2_data_unaligned[((64)*2 + 8*0) +: 8], - stage2_data_unaligned[((64)*1 + 8*0) +: 8], stage2_data_unaligned[((64)*0 + 8*0) +: 8] } - << data_start_index[0]) | unaligned_data[0]; - */ - - // The same alignment logic is done with data mask - {unaligned_dm[index], { - stage2_dm[0][LANES*7 + index], stage2_dm[0][LANES*6 + index], - stage2_dm[0][LANES*5 + index], stage2_dm[0][LANES*4 + index], - stage2_dm[0][LANES*3 + index], stage2_dm[0][LANES*2 + index], - stage2_dm[0][LANES*1 + index], stage2_dm[0][LANES*0 + index] }} - <= ( { stage2_dm_unaligned[LANES*7 + index], stage2_dm_unaligned[LANES*6 + index], - stage2_dm_unaligned[LANES*5 + index], stage2_dm_unaligned[LANES*4 + index], - stage2_dm_unaligned[LANES*3 + index], stage2_dm_unaligned[LANES*2 + index], - stage2_dm_unaligned[LANES*1 + index], stage2_dm_unaligned[LANES*0 + index] } - << (data_start_index[index]>>3)) | unaligned_dm[index]; - /* verilator lint_on WIDTH */ - end - // stage2 can have multiple pipelined stages inside it which acts as delay before issuing the write data (after issuing write command) for(index = 0; index < STAGE2_DATA_DEPTH-1; index = index+1) begin - stage2_data[index+1] <= stage2_data[index]; + stage2_data[index+1] <= stage2_data[index]; // 0->1, 1->2 stage2_dm[index+1] <= stage2_dm[index]; end + for(index = 0; index < LANES; index = index + 1) begin + /* verilator lint_off WIDTH */ + // if DQ is too late (298cd0ad51c1XXXX is written) then we want to DQ to be early + // Thus, we will forward the stage2_data_unaligned directly to stage2_data[1] (instead of the usual stage2_data[0]) + // checks if the DQ for this lane is late (index being zero while write_dq_late high means we will try 2nd assumption), if yes then we forward stage2_data_unaligned directly to stage2_data[1] + if(lane_write_dq_late[index] && (data_start_index[index] != 0)) begin + {unaligned_data[index], { + stage2_data[1][((DQ_BITS*LANES)*7 + 8*index) +: 8], stage2_data[1][((DQ_BITS*LANES)*6 + 8*index) +: 8], + stage2_data[1][((DQ_BITS*LANES)*5 + 8*index) +: 8], stage2_data[1][((DQ_BITS*LANES)*4 + 8*index) +: 8], + stage2_data[1][((DQ_BITS*LANES)*3 + 8*index) +: 8], stage2_data[1][((DQ_BITS*LANES)*2 + 8*index) +: 8], + stage2_data[1][((DQ_BITS*LANES)*1 + 8*index) +: 8], stage2_data[1][((DQ_BITS*LANES)*0 + 8*index) +: 8] }} + <= ( { stage2_data_unaligned[((DQ_BITS*LANES)*7 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*6 + 8*index) +: 8], + stage2_data_unaligned[((DQ_BITS*LANES)*5 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*4 + 8*index) +: 8], + stage2_data_unaligned[((DQ_BITS*LANES)*3 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*2 + 8*index) +: 8], + stage2_data_unaligned[((DQ_BITS*LANES)*1 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*0 + 8*index) +: 8] } + << data_start_index[index]) | unaligned_data[index]; + + {unaligned_dm[index], { + stage2_dm[1][LANES*7 + index], stage2_dm[1][LANES*6 + index], + stage2_dm[1][LANES*5 + index], stage2_dm[1][LANES*4 + index], + stage2_dm[1][LANES*3 + index], stage2_dm[1][LANES*2 + index], + stage2_dm[1][LANES*1 + index], stage2_dm[1][LANES*0 + index] }} + <= ( { stage2_dm_unaligned[LANES*7 + index], stage2_dm_unaligned[LANES*6 + index], + stage2_dm_unaligned[LANES*5 + index], stage2_dm_unaligned[LANES*4 + index], + stage2_dm_unaligned[LANES*3 + index], stage2_dm_unaligned[LANES*2 + index], + stage2_dm_unaligned[LANES*1 + index], stage2_dm_unaligned[LANES*0 + index] } + << (data_start_index[index]>>3)) | unaligned_dm[index]; + /* verilator lint_on WIDTH */ + end // end of if statement (dq for this lane is late) + + else begin // DQ is not late so we will forward stage2_data_unaligned to stage2_data[0] + /* verilator lint_off WIDTH */ + // stage2_data_unaligned is the DQ_BITS*LANES*8 raw data from stage 1 so not yet aligned + // unaligned_data is 64 bits + {unaligned_data[index], { + stage2_data[0][((DQ_BITS*LANES)*7 + 8*index) +: 8], stage2_data[0][((DQ_BITS*LANES)*6 + 8*index) +: 8], + stage2_data[0][((DQ_BITS*LANES)*5 + 8*index) +: 8], stage2_data[0][((DQ_BITS*LANES)*4 + 8*index) +: 8], + stage2_data[0][((DQ_BITS*LANES)*3 + 8*index) +: 8], stage2_data[0][((DQ_BITS*LANES)*2 + 8*index) +: 8], + stage2_data[0][((DQ_BITS*LANES)*1 + 8*index) +: 8], stage2_data[0][((DQ_BITS*LANES)*0 + 8*index) +: 8] }} + <= ( { stage2_data_unaligned[((DQ_BITS*LANES)*7 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*6 + 8*index) +: 8], + stage2_data_unaligned[((DQ_BITS*LANES)*5 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*4 + 8*index) +: 8], + stage2_data_unaligned[((DQ_BITS*LANES)*3 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*2 + 8*index) +: 8], + stage2_data_unaligned[((DQ_BITS*LANES)*1 + 8*index) +: 8], stage2_data_unaligned[((DQ_BITS*LANES)*0 + 8*index) +: 8] } + << data_start_index[index]) | unaligned_data[index]; + /* + // Example with LANE 0: + // Burst_0 to burst_7 of unaligned LANE 0 will be extracted which will be shifted by data_start_index. + // Each 8 bits of shift means a burst will be moved to next ddr3_clk cycle, this is needed if for example + // the DQ trace is longer than the command trace where the DQ bits must be delayed by 1 ddr3_clk cycle + // to align the DQ data to the write command. + // + // Since 1 controller clk cycle will have 4 ddr3_clk cycle, and each ddr3_clk cycle is DDR: + // CONTROLLER CLK CYCLE 0: [burst0,burst1] [burst2,burst3] [burst4,burst5] [burst6,burst7] + // CONTROLLER CLK CYCLE 1: [burst0,burst1] [burst2,burst3] [burst4,burst5] [burst6,burst7] + // CONTROLLER CLK CYCLE 2: [burst0,burst1] [burst2,burst3] [burst4,burst5] [burst6,burst7] + // + // shifting by 1 burst means burst 7 will be sent on next controller clk cycle and EVERY BURST WILL SHIFT: + // CONTROLLER CLK CYCLE 0: [xxxxxx,xxxxxx] [burst0,burst1] [burst2,burst3] [burst4,burst5] + // CONTROLLER CLK CYCLE 1: [burst6,burst7] [burst0,burst1] [burst2,burst3] [burst4,burst5] + // CONTROLLER CLK CYCLE 2: [burst6,burst7] [burst0,burst1] [burst2,burst3] [burst4,burst5] + // + // the [burst6,burst7] which has to be stored and delayed until next clk cycle will be handled by unaligned_data + {unaligned_data[0], { + stage2_data[0][((64)*7 + 8*0) +: 8], stage2_data[0][((64)*6 + 8*0) +: 8], + stage2_data[0][((64)*5 + 8*0) +: 8], stage2_data[0][((64)*4 + 8*0) +: 8], + stage2_data[0][((64)*3 + 8*0) +: 8], stage2_data[0][((64)*2 + 8*0) +: 8], + stage2_data[0][((64)*1 + 8*0) +: 8], stage2_data[0][((64)*0 + 8*0) +: 8] }} + <= ( { stage2_data_unaligned[((64)*7 + 8*0) +: 8], stage2_data_unaligned[((64)*6 + 8*0) +: 8], + stage2_data_unaligned[((64)*5 + 8*0) +: 8], stage2_data_unaligned[((64)*4 + 8*0) +: 8], + stage2_data_unaligned[((64)*3 + 8*0) +: 8], stage2_data_unaligned[((64)*2 + 8*0) +: 8], + stage2_data_unaligned[((64)*1 + 8*0) +: 8], stage2_data_unaligned[((64)*0 + 8*0) +: 8] } + << data_start_index[0]) | unaligned_data[0]; + */ + + // The same alignment logic is done with data mask + {unaligned_dm[index], { + stage2_dm[0][LANES*7 + index], stage2_dm[0][LANES*6 + index], + stage2_dm[0][LANES*5 + index], stage2_dm[0][LANES*4 + index], + stage2_dm[0][LANES*3 + index], stage2_dm[0][LANES*2 + index], + stage2_dm[0][LANES*1 + index], stage2_dm[0][LANES*0 + index] }} + <= ( { stage2_dm_unaligned[LANES*7 + index], stage2_dm_unaligned[LANES*6 + index], + stage2_dm_unaligned[LANES*5 + index], stage2_dm_unaligned[LANES*4 + index], + stage2_dm_unaligned[LANES*3 + index], stage2_dm_unaligned[LANES*2 + index], + stage2_dm_unaligned[LANES*1 + index], stage2_dm_unaligned[LANES*0 + index] } + << (data_start_index[index]>>3)) | unaligned_dm[index]; + /* verilator lint_on WIDTH */ + end // end for else statement (dq is not late for this lane) + end // end of for loop to forward stage2_unaligned to stage2 by lane + //abort any outgoing ack when cyc is low if(!i_wb_cyc && final_calibration_done) begin stage2_pending <= 0; @@ -1458,14 +1496,7 @@ module ddr3_controller #( cmd_d[PRECHARGE_SLOT][10] = instruction[A10_CONTROL]; cmd_d[READ_SLOT][cmd_len-1-DUAL_RANK_DIMM:0] = {(!issue_read_command), CMD_RD[2:0] | {3{(!issue_read_command)}}, cmd_odt, cmd_ck_en, cmd_reset_n, {(ROW_BITS+BA_BITS){1'b0}}}; // issued during MPR reads (address does not matter) cmd_d[ACTIVATE_SLOT][cmd_len-1-DUAL_RANK_DIMM:0] = {1'b0, 3'b111 , cmd_odt, cmd_ck_en, cmd_reset_n, {(ROW_BITS+BA_BITS){1'b0}}}; // always NOP by default - if(PRECHARGE_SLOT != 0) begin // if precharge slot is not the 0th slot, then all slots before precharge will have the previous value of cmd_ck_en - for(index = 0; index < PRECHARGE_SLOT; index=index+1) begin // slots before - if(DUAL_RANK_DIMM[0]) begin - cmd_d[index][CMD_CKE_2] = prev_cmd_ck_en[DUAL_RANK_DIMM]; - end - cmd_d[index][CMD_CKE] = prev_cmd_ck_en[0]; - end - end + // extra slot is created when READ and WRITE slots are the same // this remaining slot should be NOP by default if(WRITE_SLOT == READ_SLOT) begin @@ -1475,6 +1506,17 @@ module ddr3_controller #( else begin cmd_d[WRITE_SLOT][cmd_len-1-DUAL_RANK_DIMM:0] = {1'b0, 3'b111, cmd_odt, cmd_ck_en, cmd_reset_n, {(ROW_BITS+BA_BITS){1'b0}}}; // always NOP by default end + + // if precharge slot is not the 0th slot, then all slots before precharge will have the previous value of cmd_ck_en + if(PRECHARGE_SLOT != 0) begin + for(index = 0; index < PRECHARGE_SLOT; index=index+1) begin // slots before + if(DUAL_RANK_DIMM[0]) begin + cmd_d[index][CMD_CKE_2] = prev_cmd_ck_en[DUAL_RANK_DIMM]; + end + cmd_d[index][CMD_CKE] = prev_cmd_ck_en[0]; + end + end + ///////////////////////////////////////////////////////////////////////////////////////// // if dual rank is enabled, last 2 bits are {cs_2, cs_1} if(DUAL_RANK_DIMM[0]) begin @@ -1652,7 +1694,15 @@ module ddr3_controller #( //bank is idle so activate it else if(!bank_status_q[stage2_bank] && delay_before_activate_counter_q[stage2_bank] == 0) begin activate_slot_busy = 1'b1; + // must meet TRRD (activate to activate delay) + for(index=0; index < (1<<(BA_BITS+DUAL_RANK_DIMM)); index=index+1) begin //the activate to activate delay applies to all banks + if(delay_before_activate_counter_q[index] <= ACTIVATE_TO_ACTIVATE_DELAY) begin // if delay is > ACTIVATE_TO_ACTIVATE_DELAY, then updating it to the lower delay will cause the previous delay to be violated + delay_before_activate_counter_d[index] = ACTIVATE_TO_ACTIVATE_DELAY; + end + end + delay_before_precharge_counter_d[stage2_bank] = ACTIVATE_TO_PRECHARGE_DELAY; + //set-up delay before read and write if(delay_before_read_counter_q[stage2_bank] <= ACTIVATE_TO_READ_DELAY) begin // if current delay is > ACTIVATE_TO_READ_DELAY, then updating it to the lower delay will cause the previous delay to be violated delay_before_read_counter_d[stage2_bank] = ACTIVATE_TO_READ_DELAY; @@ -1688,53 +1738,64 @@ module ddr3_controller #( end end //end of stage 2 pending - //pending request on stage 1 - if(stage1_pending && !((stage1_next_bank == stage2_bank) && stage2_pending)) begin - //stage 1 will mainly be for anticipation (if next requests need to jump to new bank then - //anticipate the precharging and activate of that next bank, BUT it can also handle - //precharge and activate of CURRENT wishbone request. - //Anticipate will depend if the request is on the end of the row - // and must start the anticipation. For example if we have 10 rows in a bank: - //[R][R][R][R][R][R][R][A][A][A] -> [next bank] - // - //R = Request, A = Anticipate - //Unless we are near the third to the last column, stage 1 will - //issue Activate and Precharge on the CURRENT bank. Else, stage - //1 will issue Activate and Precharge for the NEXT bank - // Thus stage 1 anticipate makes sure smooth burst operation that jumps banks - if(bank_status_q[stage1_next_bank] && bank_active_row_q[stage1_next_bank] != stage1_next_row && delay_before_precharge_counter_q[stage1_next_bank] ==0 && !precharge_slot_busy) begin - //set-up delay before read and write - delay_before_activate_counter_d[stage1_next_bank] = PRECHARGE_TO_ACTIVATE_DELAY; - if(DUAL_RANK_DIMM[0]) begin - cmd_d[PRECHARGE_SLOT] = {!stage1_next_bank[(DUAL_RANK_DIMM[0]? BA_BITS : 0)], stage1_next_bank[(DUAL_RANK_DIMM[0]? BA_BITS : 0)], CMD_PRE[2:0], cmd_odt, cmd_ck_en, cmd_reset_n, stage1_next_bank[BA_BITS-1:0], { {{ROW_BITS-32'd11}{1'b0}} , 1'b0 , stage1_next_row[(DUAL_RANK_DIMM[0]? 9 : 8):0] } }; - end - else begin - cmd_d[PRECHARGE_SLOT] = {1'b0, CMD_PRE[2:0], cmd_odt, cmd_ck_en, cmd_reset_n, stage1_next_bank, { {{ROW_BITS-32'd11}{1'b0}} , 1'b0 , stage1_next_row[9:0] } }; - end - bank_status_d[stage1_next_bank] = 1'b0; - end //end of anticipate precharge - - //anticipated bank is idle so do activate - else if(!bank_status_q[stage1_next_bank] && delay_before_activate_counter_q[stage1_next_bank] == 0 && !activate_slot_busy) begin - delay_before_precharge_counter_d[stage1_next_bank] = ACTIVATE_TO_PRECHARGE_DELAY; - //set-up delay before read and write - if(delay_before_read_counter_d[stage1_next_bank] <= ACTIVATE_TO_READ_DELAY) begin // if current delay is > ACTIVATE_TO_READ_DELAY, then updating it to the lower delay will cause the previous delay to be violated - delay_before_read_counter_d[stage1_next_bank] = ACTIVATE_TO_READ_DELAY; - end - if(delay_before_write_counter_d[stage1_next_bank] <= ACTIVATE_TO_WRITE_DELAY) begin // if current delay is > ACTIVATE_TO_WRITE_DELAY, then updating it to the lower delay will cause the previous delay to be violated - delay_before_write_counter_d[stage1_next_bank] = ACTIVATE_TO_WRITE_DELAY; - end - if(DUAL_RANK_DIMM[0]) begin - cmd_d[ACTIVATE_SLOT] = {!stage1_next_bank[(DUAL_RANK_DIMM[0]? BA_BITS : 0)], stage1_next_bank[(DUAL_RANK_DIMM[0]? BA_BITS : 0)], CMD_ACT[2:0] , cmd_odt, cmd_ck_en, cmd_reset_n, stage1_next_bank[BA_BITS-1:0] , stage1_next_row[(DUAL_RANK_DIMM[0]? ROW_BITS-1 : ROW_BITS-2):0]}; - end - else begin - cmd_d[ACTIVATE_SLOT] = {1'b0, CMD_ACT[2:0] , cmd_odt, cmd_ck_en, cmd_reset_n, stage1_next_bank , stage1_next_row}; - end - bank_status_d[stage1_next_bank] = 1'b1; - bank_active_row_d[stage1_next_bank] = stage1_next_row; - end //end of anticipate activate - - end //end of stage1 anticipate + // pending request on stage 1 + // if DDR3_CLK_PERIOD == 1250, then remove this anticipate stage 1 to pass timing + if(DDR3_CLK_PERIOD != 1_250) begin + if(stage1_pending && !((stage1_next_bank == stage2_bank) && stage2_pending)) begin + //stage 1 will mainly be for anticipation (if next requests need to jump to new bank then + //anticipate the precharging and activate of that next bank, BUT it can also handle + //precharge and activate of CURRENT wishbone request. + //Anticipate will depend if the request is on the end of the row + // and must start the anticipation. For example if we have 10 rows in a bank: + //[R][R][R][R][R][R][R][A][A][A] -> [next bank] + // + //R = Request, A = Anticipate + //Unless we are near the third to the last column, stage 1 will + //issue Activate and Precharge on the CURRENT bank. Else, stage + //1 will issue Activate and Precharge for the NEXT bank + // Thus stage 1 anticipate makes sure smooth burst operation that jumps banks + if(bank_status_q[stage1_next_bank] && bank_active_row_q[stage1_next_bank] != stage1_next_row && delay_before_precharge_counter_q[stage1_next_bank] ==0 && !precharge_slot_busy) begin + //set-up delay before read and write + delay_before_activate_counter_d[stage1_next_bank] = PRECHARGE_TO_ACTIVATE_DELAY; + if(DUAL_RANK_DIMM[0]) begin + cmd_d[PRECHARGE_SLOT] = {!stage1_next_bank[(DUAL_RANK_DIMM[0]? BA_BITS : 0)], stage1_next_bank[(DUAL_RANK_DIMM[0]? BA_BITS : 0)], CMD_PRE[2:0], cmd_odt, cmd_ck_en, cmd_reset_n, stage1_next_bank[BA_BITS-1:0], { {{ROW_BITS-32'd11}{1'b0}} , 1'b0 , stage1_next_row[(DUAL_RANK_DIMM[0]? 9 : 8):0] } }; + end + else begin + cmd_d[PRECHARGE_SLOT] = {1'b0, CMD_PRE[2:0], cmd_odt, cmd_ck_en, cmd_reset_n, stage1_next_bank, { {{ROW_BITS-32'd11}{1'b0}} , 1'b0 , stage1_next_row[9:0] } }; + end + bank_status_d[stage1_next_bank] = 1'b0; + end //end of anticipate precharge + + //anticipated bank is idle so do activate + else if(!bank_status_q[stage1_next_bank] && delay_before_activate_counter_q[stage1_next_bank] == 0 && !activate_slot_busy) begin + // must meet TRRD (activate to activate delay) + for(index=0; index < (1<<(BA_BITS+DUAL_RANK_DIMM)); index=index+1) begin //the activate to activate delay applies to all banks + if(delay_before_activate_counter_d[index] <= ACTIVATE_TO_ACTIVATE_DELAY) begin // if delay is > ACTIVATE_TO_ACTIVATE_DELAY, then updating it to the lower delay will cause the previous delay to be violated + delay_before_activate_counter_d[index] = ACTIVATE_TO_ACTIVATE_DELAY; + end + end + + delay_before_precharge_counter_d[stage1_next_bank] = ACTIVATE_TO_PRECHARGE_DELAY; + + //set-up delay before read and write + if(delay_before_read_counter_d[stage1_next_bank] <= ACTIVATE_TO_READ_DELAY) begin // if current delay is > ACTIVATE_TO_READ_DELAY, then updating it to the lower delay will cause the previous delay to be violated + delay_before_read_counter_d[stage1_next_bank] = ACTIVATE_TO_READ_DELAY; + end + if(delay_before_write_counter_d[stage1_next_bank] <= ACTIVATE_TO_WRITE_DELAY) begin // if current delay is > ACTIVATE_TO_WRITE_DELAY, then updating it to the lower delay will cause the previous delay to be violated + delay_before_write_counter_d[stage1_next_bank] = ACTIVATE_TO_WRITE_DELAY; + end + if(DUAL_RANK_DIMM[0]) begin + cmd_d[ACTIVATE_SLOT] = {!stage1_next_bank[(DUAL_RANK_DIMM[0]? BA_BITS : 0)], stage1_next_bank[(DUAL_RANK_DIMM[0]? BA_BITS : 0)], CMD_ACT[2:0] , cmd_odt, cmd_ck_en, cmd_reset_n, stage1_next_bank[BA_BITS-1:0] , stage1_next_row[(DUAL_RANK_DIMM[0]? ROW_BITS-1 : ROW_BITS-2):0]}; + end + else begin + cmd_d[ACTIVATE_SLOT] = {1'b0, CMD_ACT[2:0] , cmd_odt, cmd_ck_en, cmd_reset_n, stage1_next_bank , stage1_next_row}; + end + bank_status_d[stage1_next_bank] = 1'b1; + bank_active_row_d[stage1_next_bank] = stage1_next_row; + end //end of anticipate activate + + end //end of stage1 anticipate + end // control stage 1 stall if(stage1_pending) begin //raise stall only if stage2 will still be busy next clock @@ -1931,6 +1992,9 @@ module ddr3_controller #( // while the lane with added_read_pipe_max of delay (delay of 1) will be retrieved SECOND if(delay_read_pipe[0][added_read_pipe_max != added_read_pipe[index]]) begin /* verilator lint_on WIDTH */ + // o_wb_data[63:0] = BURST0: {LANE7,LANE6,LANE5,LANE4,LANE3,LANE2,LANE1,LANE0} + // o_wb_data[127:64] = BURST1: {LANE7,LANE6,LANE5,LANE4,LANE3,LANE2,LANE1,LANE0} + // o_wb_data[191:128] = BURST2: {LANE7,LANE6,LANE5,LANE4,LANE3,LANE2,LANE1,LANE0} o_wb_data_q[0][((DQ_BITS*LANES)*0 + 8*index) +: 8] <= i_phy_iserdes_data[((DQ_BITS*LANES)*0 + 8*index) +: 8]; //update lane for burst 0 o_wb_data_q[0][((DQ_BITS*LANES)*1 + 8*index) +: 8] <= i_phy_iserdes_data[((DQ_BITS*LANES)*1 + 8*index) +: 8]; //update lane for burst 1 o_wb_data_q[0][((DQ_BITS*LANES)*2 + 8*index) +: 8] <= i_phy_iserdes_data[((DQ_BITS*LANES)*2 + 8*index) +: 8]; //update lane for burst 2 @@ -2139,6 +2203,8 @@ module ddr3_controller #( initial_calibration_done <= 1'b0; final_calibration_done <= 1'b0; reset_after_rank_1 <= 1'b0; + lane_write_dq_late <= 0; + lane_read_dq_early <= 0; for(index = 0; index < LANES; index = index + 1) begin added_read_pipe[index] <= 0; data_start_index[index] <= 0; @@ -2202,7 +2268,7 @@ module ddr3_controller #( if(idelay_data_cntvaluein[lane] == 0 && idelay_data_cntvaluein_prev == 31) begin //the DQ got past cntvalue of 31 (and goes back to zero) thus the target index should also go back (to previous odd) dq_target_index[lane] <= dqs_target_index_orig - 2; end - + // FSM case(state_calibrate) IDLE: if(i_phy_idelayctrl_rdy && instruction_address == 13) begin //we are now inside instruction 15 with maximum delay @@ -2382,7 +2448,7 @@ module ddr3_controller #( if(sample_clk_repeat == REPEAT_CLK_SAMPLING) begin sample_clk_repeat <= 0; prev_write_level_feedback <= stored_write_level_feedback; - if(({prev_write_level_feedback, stored_write_level_feedback} == 2'b01) || write_level_fail[lane]) begin + if(({prev_write_level_feedback, stored_write_level_feedback} == 2'b01) /*|| write_level_fail[lane]*/) begin /* verilator lint_on WIDTH */ /* verilator lint_off WIDTH */ if(lane == LANES - 1) begin @@ -2405,10 +2471,10 @@ module ddr3_controller #( o_phy_odelay_data_ld[lane] <= 1; o_phy_odelay_dqs_ld[lane] <= 1; write_level_fail[lane] <= odelay_cntvalue_halfway; - if(odelay_cntvalue_halfway) begin // if halfway cntvalue is reached which is illegal (or impossible to happen), then we load the original cntvalues - odelay_data_cntvaluein[lane] <= DATA_INITIAL_ODELAY_TAP[4:0]; - odelay_dqs_cntvaluein[lane] <= DQS_INITIAL_ODELAY_TAP[4:0]; - end + // if(odelay_cntvalue_halfway) begin // if halfway cntvalue is reached which is illegal (or impossible to happen), then we load the original cntvalues + // odelay_data_cntvaluein[lane] <= DATA_INITIAL_ODELAY_TAP[4:0]; + // odelay_dqs_cntvaluein[lane] <= DQS_INITIAL_ODELAY_TAP[4:0]; + // end state_calibrate <= START_WRITE_LEVEL; end end @@ -2468,7 +2534,7 @@ module ddr3_controller #( read_data_store <= o_wb_data_uncalibrated; // read data on address 0 calib_stb <= 0; state_calibrate <= ANALYZE_DATA; - data_start_index[lane] <= 0; + // data_start_index[lane] <= 0; // dont set to zero since this may have been already set by previous CHECK_STARTING_DATA // Possible Patterns (strong autocorrel stat) //0x80dbcfd275f12c3d //0x9177298cd0ad51c1 @@ -2479,19 +2545,20 @@ module ddr3_controller #( else if(!o_wb_stall_calib) begin calib_stb <= 0; end - // extract burst_0-to-burst_7 data for a specified lane then determine which byte in write_pattern does it starts + // extract burst_0-to-burst_7 data for a specified lane then determine which byte in write_pattern does it starts (ASSUMPTION: the DQ is too early [3d_9177298cd0ad51]c1 is written) // NOTE TO SELF: all "8" here assume DQ_BITS are 8? parameterize this properly // data_start_index for a specified lane determine how many bits are off the data from the write command // so for every 1 ddr3 clk cycle delay of DQ from write command, each lane will be 1 burst off: // e.g. LANE={burst7, burst6, burst5, burst4, burst3, burst2, burst1, burst0} then with 1 ddr3 cycle delay between DQ and command // burst0 will not be written but only starting on burst1 - ANALYZE_DATA: if(write_pattern[data_start_index[lane] +: 64] == {read_data_store[((DQ_BITS*LANES)*7 + 8*lane) +: 8], read_data_store[((DQ_BITS*LANES)*6 + 8*lane) +: 8], + // if lane_write_dq_late is already set to 1 for this lane, then current lane should already be fixed without changing the data_start_index + ANALYZE_DATA: if(write_pattern[ (lane_write_dq_late[lane]? 0 : data_start_index[lane]) +: 64] == {read_data_store[((DQ_BITS*LANES)*7 + 8*lane) +: 8], read_data_store[((DQ_BITS*LANES)*6 + 8*lane) +: 8], read_data_store[((DQ_BITS*LANES)*5 + 8*lane) +: 8], read_data_store[((DQ_BITS*LANES)*4 + 8*lane) +: 8], read_data_store[((DQ_BITS*LANES)*3 + 8*lane) +: 8], read_data_store[((DQ_BITS*LANES)*2 + 8*lane) +: 8],read_data_store[((DQ_BITS*LANES)*1 + 8*lane) +: 8],read_data_store[((DQ_BITS*LANES)*0 + 8*lane) +: 8] }) begin /* verilator lint_off WIDTH */ if(lane == LANES - 1) begin /* verilator lint_on WIDTH */ - state_calibrate <= SKIP_INTERNAL_TEST? FINISH_READ : BURST_WRITE; // go straight to FINISH_READ if SKIP_INTERNAL_TEST high + state_calibrate <= BIST_MODE == 0? FINISH_READ : BURST_WRITE; // go straight to FINISH_READ if BIST_MODE == 0 initial_calibration_done <= 1'b1; end else begin @@ -2500,28 +2567,53 @@ module ddr3_controller #( end end else begin - data_start_index[lane] <= data_start_index[lane] + 8; //skip by 8 - if(data_start_index[lane] == 56) begin //reached the end but no byte in write-pattern matches the data read, issue might be reading at wrong DQS toggle - data_start_index[lane] <= 0; //so we need to recalibrate the bitslip + data_start_index[lane] <= data_start_index[lane] + 8; //skip by 8 (basically we want to delay DQ since it was too early) + if(lane_write_dq_late[lane] && lane_read_dq_early[lane]) begin // both assumption is wrong so we reset the controller + reset_from_calibrate <= 1; + end + // first assumption (write DQ is late) is wrong so we repeat write-read with data_start_index back to 0 + else if(lane_write_dq_late[lane]) begin + data_start_index[lane] <= 0; // set delay to outgoing stage2_data back to zero + if(data_start_index[lane] == 0) begin // if already set to zero then we already did write-read with default zero data_start_index, so we go to CHECK_STARTING_DATA to try second assumtpion + state_calibrate <= CHECK_STARTING_DATA; + end + else begin // if not yet zero then we have to write-read again + state_calibrate <= ISSUE_WRITE_1; + end + end + //reached the end but STILL has error, issue might be WRITING TOO LATE (298cd0ad51c1XXXX is written) OR READING TOO EARLY ([9177]_298cd0ad51c1XXXX is read) + else if(data_start_index[lane] == 56) begin + data_start_index[lane] <= 0; start_index_check <= 0; state_calibrate <= CHECK_STARTING_DATA; - end + end end - //check if the data starts not at bit 0 (happens if the DQS toggles early than DQ, this means we are calibrated to read at same - //time as DQS toggles but since DQ is late then we need to look which DQS toggle does DQ actually start) + // check when the 4 MSB of write_pattern {d0ad51c1} starts on read_lane_data (read_lane_data is just the concatenation of read_data_store of a specific lane) + // assumption here read_lane_data ~= 298cd0ad51c1XXXX is written: either because we write too late (thus we need to delay outgoing stage2_data) OR we read too early (thus we need to calibrate incoming iserdes_dq) CHECK_STARTING_DATA: begin - if(read_lane_data[start_index_check +: 16] == write_pattern[0 +: 16]) begin //check if first - state_calibrate <= BITSLIP_DQS_TRAIN_3; - added_read_pipe[lane] <= { {( 4 - ($clog2(STORED_DQS_SIZE*8) - (3+1)) ){1'b0}} , dq_target_index[lane][$clog2(STORED_DQS_SIZE*8)-1:(3+1)] } - + { 3'b0 , (dq_target_index[lane][3:0] >= (5+8)) }; - dqs_bitslip_arrangement <= 16'b0011_1100_0011_1100 >> dq_target_index[lane][2:0]; - state_calibrate <= BITSLIP_DQS_TRAIN_3; + /* verilator lint_off WIDTHTRUNC */ + if(read_lane_data[start_index_check +: 32] == write_pattern[0 +: 32]) begin + /* verilator lint_on WIDTHTRUNC */ + // first assumption: controller DQ is late WHEN WRITING(THUS WE NEED TO CALIBRATE data_start_index of outgoing stage2_data) + if(!lane_write_dq_late[lane]) begin // lane_write_dq_late is not yet set so we know this first assunmption is not yet tested + state_calibrate <= ISSUE_WRITE_1; // start writing again (the next write should fix the late DQ for this current lane) + data_start_index[lane] <= 64 - start_index_check; // stage2_data_unaligned is forwarded to stage[1] so we are now 8-bursts early, so we subtract from 64 so the burst we will be forwarded to the tip of stage2_data + lane_write_dq_late[lane] <= 1'b1; + end + // if first assumption is not the fix then second assmption: controller reads the DQ too early (THUS WE NEED TO CALIBRATE INCOMING DQ SIGNAL starting from bitslip training) + else begin + lane_read_dq_early[lane] <= 1'b1; // set to 1 to see later what lanes has this problem + state_calibrate <= BITSLIP_DQS_TRAIN_3; + added_read_pipe[lane] <= { {( 4 - ($clog2(STORED_DQS_SIZE*8) - (3+1)) ){1'b0}} , dq_target_index[lane][$clog2(STORED_DQS_SIZE*8)-1:(3+1)] } + + { 3'b0 , (dq_target_index[lane][3:0] >= (5+8)) }; + dqs_bitslip_arrangement <= 16'b0011_1100_0011_1100 >> dq_target_index[lane][2:0]; + end end else begin - start_index_check <= start_index_check + 16; + start_index_check <= start_index_check + 16; // plus 16, we assume here that DQ will be late BY 1 DDR3 CLK CYCLE (if only +8, then it will be late by half DDR3 cycle, that should NOT happen) dq_target_index[lane] <= dq_target_index[lane] + 2; - if(dq_target_index[lane][$clog2(STORED_DQS_SIZE*8)] )begin //if last bit goes high, we are outside the possible values so we need to reset now + if(start_index_check == 48)begin //if value is too high, we are outside the possible values so we need to reset now reset_from_calibrate <= 1; end end @@ -2568,36 +2660,25 @@ BITSLIP_DQS_TRAIN_3: if(train_delay == 0) begin //train again the ISERDES to cap end*/ BURST_WRITE: if(!o_wb_stall_calib) begin // Test 1: Burst write (per byte write to test datamask feature), then burst read - calib_stb <= 1; + calib_stb <= !write_test_address_counter[wb_addr_bits]; // create request only at the valid address space calib_aux <= 2; if(TDQS == 0 && ECC_ENABLE == 0) begin //Test datamask by writing 1 byte at a time calib_sel <= 1 << write_by_byte_counter; calib_we <= 1; calib_addr <= write_test_address_counter[wb_addr_bits-1:0]; calib_data <= {wb_sel_bits{8'haa}}; - calib_data[8*write_by_byte_counter +: 8] <= write_test_address_counter[7:0]; - - if(MICRON_SIM) begin - //if(write_test_address_counter[wb_addr_bits-1:0] == 500) begin //inject error at middle - // calib_data <= 1; - //end - if(write_by_byte_counter == {$clog2(wb_sel_bits){1'b1}}) begin - if(write_test_address_counter[wb_addr_bits-1:0] == 99 ) begin //MUST END AT ODD NUMBER - state_calibrate <= BURST_READ; - end - write_test_address_counter <= write_test_address_counter + 1; - end - end - else begin - //if(write_test_address_counter[wb_addr_bits-1:0] == { 2'b00 , 1'b0, {(wb_addr_bits-3){1'b1}} }) begin //inject error at middle - // calib_data <= 1; - // end - if(write_by_byte_counter == {$clog2(wb_sel_bits){1'b1}}) begin - if(write_test_address_counter[wb_addr_bits-1:0] == { 2'b00 , {(wb_addr_bits-2){1'b1}} } ) begin //MUST END AT ODD NUMBER - state_calibrate <= BURST_READ; - end - write_test_address_counter <= write_test_address_counter + 1; - end + // calib_data[8*write_by_byte_counter +: 8] <= write_test_address_counter[7:0]; + calib_data[8*write_by_byte_counter +: 8] <= calib_data_randomized[8*write_by_byte_counter +: 8]; + if(write_by_byte_counter == {$clog2(wb_sel_bits){1'b1}}) begin + write_test_address_counter <= MICRON_SIM? write_test_address_counter + (2**SIM_ADDRESS_INCR_LOG2) : write_test_address_counter + 1; // at BIST_MODE=1, this will create 128 writes + /* verilator lint_off WIDTHEXPAND */ + if((write_test_address_counter[wb_addr_bits-1:0] - MICRON_SIM == { {2{BIST_MODE[1]}} , {(wb_addr_bits-2){1'b1}} }) && (MICRON_SIM? (write_test_address_counter != 0) : 1)) begin //MUST END AT ODD NUMBER + /* verilator lint_on WIDTHEXPAND */ + if(BIST_MODE == 2) begin // mode 2 = burst write-read the WHOLE address space so always set the address counter back to zero + write_test_address_counter <= 0; + end + state_calibrate <= BURST_READ; + end end write_by_byte_counter <= write_by_byte_counter + 1; @@ -2606,49 +2687,38 @@ BITSLIP_DQS_TRAIN_3: if(train_delay == 0) begin //train again the ISERDES to cap calib_sel <= {wb_sel_bits{1'b1}}; calib_we <= 1; calib_addr <= write_test_address_counter[wb_addr_bits-1:0]; - calib_data <= {wb_sel_bits{write_test_address_counter[7:0]}}; - - if(MICRON_SIM) begin - //if(write_test_address_counter[wb_addr_bits-1:0] == 500) begin //inject error at middle - // calib_data <= 1; - //end - if(write_test_address_counter[wb_addr_bits-1:0] == 99 ) begin //MUST END AT ODD NUMBER - state_calibrate <= BURST_READ; - end - end - else begin - //if(write_test_address_counter[wb_addr_bits-1:0] == { 2'b00 , 1'b0, {(wb_addr_bits-3){1'b1}} }) begin //inject error at middle - // calib_data <= 1; - //end - if(write_test_address_counter[wb_addr_bits-1:0] == { 2'b00 , {(wb_addr_bits-2){1'b1}} } ) begin //MUST END AT ODD NUMBER - state_calibrate <= BURST_READ; - end - end - write_test_address_counter <= write_test_address_counter + 1; + // calib_data <= {wb_sel_bits{write_test_address_counter[7:0]}}; + calib_data <= calib_data_randomized; + write_test_address_counter <= MICRON_SIM? write_test_address_counter + (2**SIM_ADDRESS_INCR_LOG2) : write_test_address_counter + 1; // at BIST_MODE=1, this will create 128 writes + /* verilator lint_off WIDTHEXPAND */ + if((write_test_address_counter[wb_addr_bits-1:0] - MICRON_SIM == { {2{BIST_MODE[1]}} , {(wb_addr_bits-2){1'b1}} }) && (MICRON_SIM? (write_test_address_counter != 0) : 1)) begin //MUST END AT ODD NUMBER + /* verilator lint_on WIDTHEXPAND */ + if(BIST_MODE == 2) begin // mode 2 = burst write-read the WHOLE address space so always set the address counter back to zero + write_test_address_counter <= 0; + end + state_calibrate <= BURST_READ; + end end end BURST_READ: if(!o_wb_stall_calib) begin - calib_stb <= 1; + calib_stb <= !read_test_address_counter[wb_addr_bits]; // create request only at the valid address space calib_aux <= 3; calib_we <= 0; - calib_addr <= read_test_address_counter; - read_test_address_counter <= read_test_address_counter + 1; - if(MICRON_SIM) begin - if(read_test_address_counter == 99) begin //MUST END AT ODD NUMBER - state_calibrate <= RANDOM_WRITE; + calib_addr <= read_test_address_counter[wb_addr_bits-1:0]; + read_test_address_counter <= MICRON_SIM? read_test_address_counter + (2**SIM_ADDRESS_INCR_LOG2) : read_test_address_counter + 1; // at BIST_MODE=1, this will create 128 reads + /* verilator lint_off WIDTHEXPAND */ + if((read_test_address_counter - MICRON_SIM == { {2{BIST_MODE[1]}} , {(wb_addr_bits-2){1'b1}} }) && (MICRON_SIM? (read_test_address_counter != 0) : 1)) begin //MUST END AT ODD NUMBER + /* verilator lint_on WIDTHEXPAND */ + if(BIST_MODE == 2) begin // mode 2 = burst write-read the WHOLE address space so always set the address counter back to zero + read_test_address_counter <= 0; end - end - else begin - if(read_test_address_counter == { 2'b00 , {(wb_addr_bits-2){1'b1}} }) begin //MUST END AT ODD NUMBER - state_calibrate <= RANDOM_WRITE; - end - end - + state_calibrate <= RANDOM_WRITE; + end end RANDOM_WRITE: if(!o_wb_stall_calib) begin // Test 2: Random write (increments row address to force precharge-act-r/w) then random read - calib_stb <= 1; + calib_stb <= !write_test_address_counter[wb_addr_bits]; // create request only at the valid address space calib_aux <= 2; calib_sel <= {wb_sel_bits{1'b1}}; calib_we <= 1; @@ -2656,67 +2726,56 @@ BITSLIP_DQS_TRAIN_3: if(train_delay == 0) begin //train again the ISERDES to cap <= write_test_address_counter[ROW_BITS-1:0]; // store row calib_addr[(BA_BITS + COL_BITS- $clog2(serdes_ratio*2) - 1 + DUAL_RANK_DIMM) : 0] <= write_test_address_counter[wb_addr_bits-1:ROW_BITS]; // store bank + col - calib_data <= {wb_sel_bits{write_test_address_counter[7:0]}}; - if(MICRON_SIM) begin - //if(write_test_address_counter[wb_addr_bits-1:0] == 1500) begin //inject error - // calib_data <= 1; - //end - if(write_test_address_counter[wb_addr_bits-1:0] == 199) begin //MUST END AT ODD NUMBER since ALTERNATE_WRITE_READ must start at even - state_calibrate <= RANDOM_READ; + // calib_data <= {wb_sel_bits{write_test_address_counter[7:0]}}; + calib_data <= calib_data_randomized; + write_test_address_counter <= MICRON_SIM? write_test_address_counter + (2**SIM_ADDRESS_INCR_LOG2) : write_test_address_counter + 1; // at BIST_MODE=1, this will create 128 writes + /* verilator lint_off WIDTHEXPAND */ + if((write_test_address_counter[wb_addr_bits-1:0] - MICRON_SIM == { 1'b1, BIST_MODE[1] , {(wb_addr_bits-2){1'b1}} }) && (MICRON_SIM? (write_test_address_counter != 0) : 1)) begin //MUST END AT ODD NUMBER since ALTERNATE_WRITE_READ must start at even + /* verilator lint_on WIDTHEXPAND */ + if(BIST_MODE == 2) begin // mode 2 = random write-read the WHOLE address space so always set the address counter back to zero + write_test_address_counter <= 0; end + state_calibrate <= RANDOM_READ; end - else begin - // if(write_test_address_counter[wb_addr_bits-1:0] == { 2'b01 , 1'b0, {(wb_addr_bits-3){1'b1}}} ) begin //inject error - // calib_data <= 1; - // end - if(write_test_address_counter[wb_addr_bits-1:0] == { 2'b01 , {(wb_addr_bits-2){1'b1}} } ) begin //MUST END AT ODD NUMBER since ALTERNATE_WRITE_READ must start at even - state_calibrate <= RANDOM_READ; - end - end - write_test_address_counter <= write_test_address_counter + 1; end RANDOM_READ: if(!o_wb_stall_calib) begin - calib_stb <= 1; + calib_stb <= !read_test_address_counter[wb_addr_bits]; // create request only at the valid address space calib_aux <= 3; calib_we <= 0; calib_addr[ (ROW_BITS + BA_BITS + COL_BITS- $clog2(serdes_ratio*2) - 1 + DUAL_RANK_DIMM) : (BA_BITS + COL_BITS- $clog2(serdes_ratio*2) + DUAL_RANK_DIMM) ] <= read_test_address_counter[ROW_BITS-1:0]; // row calib_addr[(BA_BITS + COL_BITS- $clog2(serdes_ratio*2) - 1 + DUAL_RANK_DIMM) : 0] <= read_test_address_counter[wb_addr_bits-1:ROW_BITS]; // bank + col - read_test_address_counter <= read_test_address_counter + 1; - if(MICRON_SIM) begin - if(read_test_address_counter == 199) begin //MUST END AT ODD NUMBER since ALTERNATE_WRITE_READ must start at even - state_calibrate <= ALTERNATE_WRITE_READ; - end - end - else begin - if(read_test_address_counter == { 2'b01 , {(wb_addr_bits-2){1'b1}} } ) begin //MUST END AT ODD NUMBER since ALTERNATE_WRITE_READ must start at even - state_calibrate <= ALTERNATE_WRITE_READ; + read_test_address_counter <= MICRON_SIM? read_test_address_counter + (2**SIM_ADDRESS_INCR_LOG2) : read_test_address_counter + 1; // at BIST_MODE=1, this will create 128 reads + /* verilator lint_off WIDTHEXPAND */ + if((read_test_address_counter - MICRON_SIM == { 1'b1 , BIST_MODE[1], {(wb_addr_bits-2){1'b1}} }) && (MICRON_SIM? (read_test_address_counter != 0) : 1)) begin //MUST END AT ODD NUMBER since ALTERNATE_WRITE_READ must start at even + /* verilator lint_on WIDTHEXPAND */ + if(BIST_MODE == 2) begin // mode 2 = random write-read the WHOLE address space so always set the address counter back to zero + read_test_address_counter <= 0; end + state_calibrate <= ALTERNATE_WRITE_READ; end end ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin - calib_stb <= 1; - calib_aux <= 4 + { {(AUX_WIDTH-1){1'b0}} , write_test_address_counter[0]}; //4 (write), 5 (read) + calib_stb <= !write_test_address_counter[wb_addr_bits]; // create request only at the valid address space + calib_aux <= 2 + (calib_we? 1:0); //2 (write), 3 (read) calib_sel <= {wb_sel_bits{1'b1}}; - calib_we <= !write_test_address_counter[0]; //0(write) -> 1(read) - calib_addr <= {1'b0, write_test_address_counter[wb_addr_bits-1:1]}; //same address to be used for write and read ( so basically write then read instantly) - calib_data <= {wb_sel_bits{write_test_address_counter[7:0]}}; - if(MICRON_SIM) begin - if(write_test_address_counter == 499) begin - train_delay <= 15; - state_calibrate <= FINISH_READ; - end + calib_we <= !calib_we; // alternating write-read + calib_addr <= write_test_address_counter[wb_addr_bits-1:0]; + // calib_data <= {wb_sel_bits{write_test_address_counter[7:0]}}; + calib_data <= calib_data_randomized; + + if(calib_we) begin // if current operation is write, then dont increment address since we wil read the same address next + write_test_address_counter <= MICRON_SIM? write_test_address_counter + (2**SIM_ADDRESS_INCR_LOG2) : write_test_address_counter + 1; // at BIST_MODE=1, this will create 128 writes end - else begin - if(write_test_address_counter[wb_addr_bits-1:0] == { 2'b11 , {(wb_addr_bits-2){1'b1}} } ) begin - train_delay <= 15; - state_calibrate <= FINISH_READ; - end + /* verilator lint_off WIDTHEXPAND */ + if((write_test_address_counter[wb_addr_bits-1:0] - MICRON_SIM == { 2'b11 , {(wb_addr_bits-2){1'b1}} }) && (MICRON_SIM? (write_test_address_counter != 0) : 1)) begin + /* verilator lint_on WIDTHEXPAND */ + train_delay <= 15; + state_calibrate <= FINISH_READ; end - write_test_address_counter <= write_test_address_counter + 1; end FINISH_READ: begin calib_stb <= 0; @@ -2776,6 +2835,19 @@ ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin end end end + // generate calib_data for BIST + // Uses different operations (XOR, addition, subtraction, bit rotation) to generate different values per byte. + // When MICRON_SIM=1, then we use the relevant bits (7:0 will be zero since during simulation the increment is a large number) + assign calib_data_randomized = { + {(wb_sel_bits/8){write_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'hA5, // Byte 7 + write_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] | 8'h1A, // Byte 7 + write_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] & 8'h33, // Byte 5 + write_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h5A, // Byte 4 + write_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] & 8'h21, // Byte 3 + write_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] | 8'hC7, // Byte 1 + write_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h7E, // Byte 1 + write_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h3C}} // Byte 0 + }; generate if(DUAL_RANK_DIMM[0]) begin : dual_rank_mux @@ -2809,18 +2881,46 @@ ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin generate if(ECC_ENABLE == 0 || ECC_ENABLE == 3) begin : ecc_enable_0_correct_data - assign correct_data = {wb_sel_bits{check_test_address_counter[7:0]}}; + // assign correct_data = {wb_sel_bits{check_test_address_counter[7:0]}}; + assign correct_data = { + {(wb_sel_bits/8){check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'hA5, // Byte 7 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] | 8'h1A, // Byte 7 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] & 8'h33, // Byte 5 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h5A, // Byte 4 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] & 8'h21, // Byte 3 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] | 8'hC7, // Byte 1 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h7E, // Byte 1 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h3C }} // Byte 0 + }; end else if(ECC_ENABLE == 1) begin : ecc_enable_1_correct_data wire[wb_data_bits-1:0] correct_data_orig; - - assign correct_data_orig = {wb_sel_bits{check_test_address_counter[7:0]}}; + // assign correct_data_orig = {wb_sel_bits{check_test_address_counter[7:0]}}; + assign correct_data_orig = { + {(wb_sel_bits/8){check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'hA5, // Byte 7 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] | 8'h1A, // Byte 7 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] & 8'h33, // Byte 5 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h5A, // Byte 4 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] & 8'h21, // Byte 3 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] | 8'hC7, // Byte 1 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h7E, // Byte 1 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h3C}} // Byte 0 + }; assign correct_data = {{(wb_data_bits-ECC_INFORMATION_BITS*8){1'b0}} , correct_data_orig[ECC_INFORMATION_BITS*8 - 1 : 0]}; //only ECC_INFORMATION_BITS are valid in o_wb_data end else if(ECC_ENABLE == 2) begin : ecc_enable_2_correct_data wire[wb_data_bits-1:0] correct_data_orig; - - assign correct_data_orig = {wb_sel_bits{check_test_address_counter[7:0]}}; + // assign correct_data_orig = {wb_sel_bits{check_test_address_counter[7:0]}}; + assign correct_data_orig = { + {(wb_sel_bits/8){check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'hA5, // Byte 7 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] | 8'h1A, // Byte 7 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] & 8'h33, // Byte 5 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h5A, // Byte 4 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] & 8'h21, // Byte 3 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] | 8'hC7, // Byte 1 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h7E, // Byte 1 + check_test_address_counter[(MICRON_SIM? SIM_ADDRESS_INCR_LOG2:0) +: 8] ^ 8'h3C}} // Byte 0 + }; assign correct_data = {{(wb_data_bits-ECC_INFORMATION_BITS){1'b0}} , correct_data_orig[ECC_INFORMATION_BITS - 1 : 0]}; //only ECC_INFORMATION_BITS are valid in o_wb_data end endgenerate @@ -2835,7 +2935,7 @@ ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin else begin reset_from_test <= 0; if(state_calibrate != DONE_CALIBRATE) begin - if ( (o_aux[2:0] == 3'd3 || o_aux[2:0] == 3'd5) && o_wb_ack_uncalibrated ) begin + if ( o_aux[2:0] == 3'd3 && o_wb_ack_uncalibrated ) begin //o_aux = 3 is for read from calibration if(o_wb_data == correct_data) begin correct_read_data <= correct_read_data + 1; end @@ -2845,7 +2945,7 @@ ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin reset_from_test <= !final_calibration_done; //reset controller when a wrong data is received (only when calibration is not yet done) end /* verilator lint_off WIDTHEXPAND */ - check_test_address_counter <= check_test_address_counter + 1 + (o_aux[2:0] == 3'd5); // alternate write read when aux == 5 + check_test_address_counter <= check_test_address_counter + (MICRON_SIM? (2**SIM_ADDRESS_INCR_LOG2) : 1); /* verilator lint_on WIDTHEXPAND */ end end @@ -3465,6 +3565,7 @@ ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin $display("ACTIVATE_TO_WRITE_DELAY = %0d", ACTIVATE_TO_WRITE_DELAY); $display("ACTIVATE_TO_READ_DELAY = %0d", ACTIVATE_TO_READ_DELAY); $display("ACTIVATE_TO_PRECHARGE_DELAY = %0d", ACTIVATE_TO_PRECHARGE_DELAY); + $display("ACTIVATE_TO_ACTIVATE_DELAY = %0d", ACTIVATE_TO_ACTIVATE_DELAY); $display("READ_TO_WRITE_DELAY = %0d", READ_TO_WRITE_DELAY); $display("READ_TO_READ_DELAY = %0d", READ_TO_READ_DELAY); $display("READ_TO_PRECHARGE_DELAY = %0d", READ_TO_PRECHARGE_DELAY); @@ -3488,7 +3589,7 @@ ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin $display("ODELAY_SUPPORTED = %0d", ODELAY_SUPPORTED); $display("SECOND_WISHBONE = %0d", SECOND_WISHBONE); $display("WB_ERROR = %0d", WB_ERROR); - $display("SKIP_INTERNAL_TEST = %0d", SKIP_INTERNAL_TEST); + $display("BIST_MODE = %0d", BIST_MODE); $display("ECC_ENABLE = %0d", ECC_ENABLE); $display("DIC = %0d", DIC); $display("RTT_NOM = %0d", RTT_NOM); @@ -4415,7 +4516,7 @@ ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin assert(stage1_pending == 0 && stage2_pending == 0); end - if(state_calibrate <= ISSUE_READ) begin + if((state_calibrate <= ISSUE_READ) || (state_calibrate >= ANALYZE_DATA && state_calibrate <= BITSLIP_DQS_TRAIN_3)) begin // add ANALYZE_DATA and BITSLIP_DQS_TRAIN_3 for(f_index_1 = 0; f_index_1 < 1; f_index_1 = f_index_1 + 1) begin assert(o_wb_ack_read_q[f_index_1] == 0); end @@ -4432,7 +4533,7 @@ ALTERNATE_WRITE_READ: if(!o_wb_stall_calib) begin assert(o_wb_ack == 0); //o_wb_ack must not go high before done calibration end - if(state_calibrate > ISSUE_WRITE_1 && state_calibrate <= ANALYZE_DATA) begin + if(state_calibrate > ISSUE_WRITE_1 && state_calibrate <= READ_DATA) begin if(stage1_pending) begin assert(!stage1_we == stage1_aux[0]); //if write, then aux id must be 1 else 0 assert(stage1_aux[2:1] == 2'b00); diff --git a/rtl/ddr3_phy.v b/rtl/ddr3_phy.v index 927098e..da4f0b6 100644 --- a/rtl/ddr3_phy.v +++ b/rtl/ddr3_phy.v @@ -28,7 +28,7 @@ // //////////////////////////////////////////////////////////////////////////////// -`default_nettype none +// `default_nettype none `timescale 1ps / 1ps //`define DEBUG_DQS // uncomment to route the raw DQS to output port for debugging diff --git a/rtl/ddr3_top.v b/rtl/ddr3_top.v index ca7c550..8db59ad 100644 --- a/rtl/ddr3_top.v +++ b/rtl/ddr3_top.v @@ -27,7 +27,7 @@ // //////////////////////////////////////////////////////////////////////////////// -`default_nettype none +//`default_nettype none `timescale 1ps / 1ps module ddr3_top #( @@ -51,7 +51,7 @@ module ddr3_top #( ODELAY_SUPPORTED = 0, //set to 1 when ODELAYE2 is supported SECOND_WISHBONE = 0, //set to 1 if 2nd wishbone for debugging is needed WB_ERROR = 0, // set to 1 to support Wishbone error (asserts at ECC double bit error) - SKIP_INTERNAL_TEST = 0, // skip built-in self test (would require >2 seconds of internal test right after calibration) + parameter[1:0] BIST_MODE = 1, // 0 = No BIST, 1 = run through all address space ONCE , 2 = run through all address space for every test (burst w/r, random w/r, alternating r/w) parameter[1:0] ECC_ENABLE = 0, // set to 1 or 2 to add ECC (1 = Side-band ECC per burst, 2 = Side-band ECC per 8 bursts , 3 = Inline ECC ) parameter[1:0] DIC = 2'b00, //Output Driver Impedance Control (2'b00 = RZQ/6, 2'b01 = RZQ/7, RZQ = 240ohms) (only change when you know what you are doing) parameter[2:0] RTT_NOM = 3'b011, //RTT Nominal (3'b000 = disabled, 3'b001 = RZQ/4, 3'b010 = RZQ/2 , 3'b011 = RZQ/6, RZQ = 240ohms) (only change when you know what you are doing) @@ -259,7 +259,7 @@ ddr3_top #( .SECOND_WISHBONE(SECOND_WISHBONE), //set to 1 if 2nd wishbone is needed .ECC_ENABLE(ECC_ENABLE), // set to 1 or 2 to add ECC (1 = Side-band ECC per burst, 2 = Side-band ECC per 8 bursts , 3 = Inline ECC ) .WB_ERROR(WB_ERROR), // set to 1 to support Wishbone error (asserts at ECC double bit error) - .SKIP_INTERNAL_TEST(SKIP_INTERNAL_TEST), // skip built-in self test (would require >2 seconds of internal test right after calibration) + .BIST_MODE(BIST_MODE), // 0 = No BIST, 1 = run through all address space ONCE , 2 = run through all address space for every test (burst w/r, random w/r, alternating r/w) .DIC(DIC), //Output Driver Impedance Control (2'b00 = RZQ/6, 2'b01 = RZQ/7, RZQ = 240ohms) .RTT_NOM(RTT_NOM), //RTT Nominal (3'b000 = disabled, 3'b001 = RZQ/4, 3'b010 = RZQ/2 , 3'b011 = RZQ/6, RZQ = 240ohms) .DUAL_RANK_DIMM(DUAL_RANK_DIMM), // enable dual rank DIMM (1 = enable, 0 = disable) @@ -386,29 +386,29 @@ ddr3_top #( .o_ddr3_debug_read_dqs_n(/*o_ddr3_debug_read_dqs_n*/) ); - // display value of parameters for easy debugging - initial begin - $display("\nDDR3 TOP PARAMETERS:\n-----------------------------"); - $display("CONTROLLER_CLK_PERIOD = %0d", CONTROLLER_CLK_PERIOD); - $display("DDR3_CLK_PERIOD = %0d", DDR3_CLK_PERIOD); - $display("ROW_BITS = %0d", ROW_BITS); - $display("COL_BITS = %0d", COL_BITS); - $display("BA_BITS = %0d", BA_BITS); - $display("BYTE_LANES = %0d", BYTE_LANES); - $display("AUX_WIDTH = %0d", AUX_WIDTH); - $display("WB2_ADDR_BITS = %0d", WB2_ADDR_BITS); - $display("WB2_DATA_BITS = %0d", WB2_DATA_BITS); - $display("MICRON_SIM = %0d", MICRON_SIM); - $display("ODELAY_SUPPORTED = %0d", ODELAY_SUPPORTED); - $display("SECOND_WISHBONE = %0d", SECOND_WISHBONE); - $display("WB_ERROR = %0d", WB_ERROR); - $display("SKIP_INTERNAL_TEST = %0d", SKIP_INTERNAL_TEST); - $display("ECC_ENABLE = %0d", ECC_ENABLE); - $display("DIC = %0d", DIC); - $display("RTT_NOM = %0d", RTT_NOM); - $display("SELF_REFRESH = %0d", SELF_REFRESH); - $display("DUAL_RANK_DIMM = %0d", DUAL_RANK_DIMM); - $display("End of DDR3 TOP PARAMETERS\n-----------------------------"); - end + // // display value of parameters for easy debugging + // initial begin + // $display("\nDDR3 TOP PARAMETERS:\n-----------------------------"); + // $display("CONTROLLER_CLK_PERIOD = %0d", CONTROLLER_CLK_PERIOD); + // $display("DDR3_CLK_PERIOD = %0d", DDR3_CLK_PERIOD); + // $display("ROW_BITS = %0d", ROW_BITS); + // $display("COL_BITS = %0d", COL_BITS); + // $display("BA_BITS = %0d", BA_BITS); + // $display("BYTE_LANES = %0d", BYTE_LANES); + // $display("AUX_WIDTH = %0d", AUX_WIDTH); + // $display("WB2_ADDR_BITS = %0d", WB2_ADDR_BITS); + // $display("WB2_DATA_BITS = %0d", WB2_DATA_BITS); + // $display("MICRON_SIM = %0d", MICRON_SIM); + // $display("ODELAY_SUPPORTED = %0d", ODELAY_SUPPORTED); + // $display("SECOND_WISHBONE = %0d", SECOND_WISHBONE); + // $display("WB_ERROR = %0d", WB_ERROR); + // $display("BIST_MODE = %0d", BIST_MODE); + // $display("ECC_ENABLE = %0d", ECC_ENABLE); + // $display("DIC = %0d", DIC); + // $display("RTT_NOM = %0d", RTT_NOM); + // $display("SELF_REFRESH = %0d", SELF_REFRESH); + // $display("DUAL_RANK_DIMM = %0d", DUAL_RANK_DIMM); + // $display("End of DDR3 TOP PARAMETERS\n-----------------------------"); + // end endmodule diff --git a/testbench/8192Mb_ddr3_parameters.vh b/testbench/8192Mb_ddr3_parameters.vh index 6020007..a980d6f 100644 --- a/testbench/8192Mb_ddr3_parameters.vh +++ b/testbench/8192Mb_ddr3_parameters.vh @@ -425,15 +425,15 @@ parameter PRE_DEF_PAT = 8'hAA; // value returned during mpr pre-defined pattern readout parameter STOP_ON_ERROR = 1; // If set to 1, the model will halt on command sequence/major errors parameter DEBUG = 0; // Turn on Debug messages - parameter BUS_DELAY = 0; // delay in picoseconds - parameter FLY_BY_DELAY_LANE_0 = 0; // delay in picoseconds - parameter FLY_BY_DELAY_LANE_1 = 0; // delay in picoseconds - parameter FLY_BY_DELAY_LANE_2 = 0; // delay in picoseconds - parameter FLY_BY_DELAY_LANE_3 = 0; // delay in picoseconds - parameter FLY_BY_DELAY_LANE_4 = 0; // delay in picoseconds - parameter FLY_BY_DELAY_LANE_5 = 0; // delay in picoseconds - parameter FLY_BY_DELAY_LANE_6 = 0; // delay in picoseconds - parameter FLY_BY_DELAY_LANE_7 = 0; // delay in picoseconds + parameter BUS_DELAY = 0; // delay in picoseconds + parameter FLY_BY_DELAY_LANE_0 = 0; // delay in picoseconds + parameter FLY_BY_DELAY_LANE_1 = 0; // delay in picoseconds + parameter FLY_BY_DELAY_LANE_2 = 0; // delay in picoseconds + parameter FLY_BY_DELAY_LANE_3 = 0; // delay in picoseconds + parameter FLY_BY_DELAY_LANE_4 = 0; // delay in picoseconds + parameter FLY_BY_DELAY_LANE_5 = 0; // delay in picoseconds + parameter FLY_BY_DELAY_LANE_6 = 0; // delay in picoseconds + parameter FLY_BY_DELAY_LANE_7 = 0; // delay in picoseconds parameter RANDOM_OUT_DELAY = 0; // If set to 1, the model will put a random amount of delay on DQ/DQS during reads parameter RANDOM_SEED = 31913; //seed value for random generator. diff --git a/testbench/README.txt b/testbench/README.txt new file mode 100644 index 0000000..31417ed --- /dev/null +++ b/testbench/README.txt @@ -0,0 +1,83 @@ +################################################################################ +# Vivado (TM) v2022.1 (64-bit) +# +# README.txt: Please read the sections below to understand the steps required +# to simulate the design for a simulator, the directory structure +# and the generated exported files. +# +################################################################################ + +1. Simulate Design + +To simulate design, cd to the simulator directory and execute the script. + +For example:- + +% cd questa +% ./top.sh + +The export simulation flow requires the Xilinx pre-compiled simulation library +components for the target simulator. These components are referred using the +'-lib_map_path' switch. If this switch is specified, then the export simulation +will automatically set this library path in the generated script and update, +copy the simulator setup file(s) in the exported directory. + +If '-lib_map_path' is not specified, then the pre-compiled simulation library +information will not be included in the exported scripts and that may cause +simulation errors when running this script. Alternatively, you can provide the +library information using this switch while executing the generated script. + +For example:- + +% ./top.sh -lib_map_path /design/questa/clibs + +Please refer to the generated script header 'Prerequisite' section for more details. + +2. Directory Structure + +By default, if the -directory switch is not specified, export_simulation will +create the following directory structure:- + +/export_sim/ + +For example, if the current working directory is /tmp/test, export_simulation +will create the following directory path:- + +/tmp/test/export_sim/questa + +If -directory switch is specified, export_simulation will create a simulator +sub-directory under the specified directory path. + +For example, 'export_simulation -directory /tmp/test/my_test_area/func_sim' +command will create the following directory:- + +/tmp/test/my_test_area/func_sim/questa + +By default, if -simulator is not specified, export_simulation will create a +simulator sub-directory for each simulator and export the files for each simulator +in this sub-directory respectively. + +IMPORTANT: Please note that the simulation library path must be specified manually +in the generated script for the respective simulator. Please refer to the generated +script header 'Prerequisite' section for more details. + +3. Exported script and files + +Export simulation will create the driver shell script, setup files and copy the +design sources in the output directory path. + +By default, when the -script_name switch is not specified, export_simulation will +create the following script name:- + +.sh (Unix) +When exporting the files for an IP using the -of_objects switch, export_simulation +will create the following script name:- + +.sh (Unix) +Export simulation will create the setup files for the target simulator specified +with the -simulator switch. + +For example, if the target simulator is "xcelium", export_simulation will create the +'cds.lib', 'hdl.var' and design library diectories and mappings in the 'cds.lib' +file. + diff --git a/testbench/ddr3.sv b/testbench/ddr3.sv index c6f1fba..15af8a5 100644 --- a/testbench/ddr3.sv +++ b/testbench/ddr3.sv @@ -94,9 +94,6 @@ // DO NOT CHANGE THE TIMESCALE // MAKE SURE YOUR SIMULATOR USES "PS" RESOLUTION `timescale 1ps / 1ps -`define den8192Mb -`define sg125 -`define x16 `default_nettype wire module ddr3 ( @@ -117,6 +114,7 @@ module ddr3 ( tdqs_n, odt ); +`include "sim_defines.vh" `ifdef den1024Mb `include "1024Mb_ddr3_parameters.vh" diff --git a/testbench/ddr3_dimm_micron_sim.sv b/testbench/ddr3_dimm_micron_sim.sv index 7ed0715..abd3396 100644 --- a/testbench/ddr3_dimm_micron_sim.sv +++ b/testbench/ddr3_dimm_micron_sim.sv @@ -27,16 +27,11 @@ //////////////////////////////////////////////////////////////////////////////// `timescale 1ps / 1ps -`define den8192Mb -`define sg125 -`define x16 //`define USE_CLOCK_WIZARD -`define TWO_LANES_x8 -//`define EIGHT_LANES_x8 -`define RAM_8Gb //`define XADC module ddr3_dimm_micron_sim; +`include "sim_defines.vh" // contains defines for simulation `ifdef den1024Mb `include "1024Mb_ddr3_parameters.vh" `elsif den2048Mb @@ -53,22 +48,23 @@ module ddr3_dimm_micron_sim; `ifdef TWO_LANES_x8 localparam BYTE_LANES = 2, - ODELAY_SUPPORTED = 0; + ODELAY_SUPPORTED = 1; `endif `ifdef EIGHT_LANES_x8 localparam BYTE_LANES = 8, - ODELAY_SUPPORTED = 0; + ODELAY_SUPPORTED = 1; `endif - localparam CONTROLLER_CLK_PERIOD = 10_000, //ps, period of clock input to this DDR3 controller module - DDR3_CLK_PERIOD = 2500,//ps, period of clock input to DDR3 RAM device + localparam CONTROLLER_CLK_PERIOD = 12_000, //ps, period of clock input to this DDR3 controller module + DDR3_CLK_PERIOD = 3_000, //ps, period of clock input to DDR3 RAM device AUX_WIDTH = 16, // AUX lines ECC_ENABLE = 0, // ECC enable SELF_REFRESH = 2'b00, DUAL_RANK_DIMM = 0, - TEST_SELF_REFRESH = 0; + TEST_SELF_REFRESH = 0, + BIST_MODE = 1; // 0 = No BIST, 1 = run through all address space ONCE , 2 = run through all address space for every test (burst w/r, random w/r, alternating r/w) reg i_controller_clk, i_ddr3_clk, i_ref_clk, i_ddr3_clk_90; @@ -118,7 +114,6 @@ module ddr3_dimm_micron_sim; // temperature wire user_temp_alarm_out; - `ifdef USE_CLOCK_WIZARD // Use clock wizard reg i_clk; @@ -173,7 +168,7 @@ ddr3_top #( .SECOND_WISHBONE(0), //set to 1 if 2nd wishbone for debugging is needed .ECC_ENABLE(ECC_ENABLE), // set to 1 or 2 to add ECC (1 = Side-band ECC per burst, 2 = Side-band ECC per 8 bursts , 3 = Inline ECC ) .WB_ERROR(1), // set to 1 to support Wishbone error (asserts at ECC double bit error) - .SKIP_INTERNAL_TEST(0), // skip built-in self test (would require >2 seconds of internal test right after calibration) + .BIST_MODE(BIST_MODE), // 0 = No BIST, 1 = run through all address space ONCE , 2 = run through all address space for every test (burst w/r, random w/r, alternating r/w) .SELF_REFRESH(SELF_REFRESH), // 0 = use i_user_self_refresh input, 1 = Self-refresh mode is enabled after 64 controller clock cycles of no requests, 2 = 128 cycles, 3 = 256 cycles .DUAL_RANK_DIMM(DUAL_RANK_DIMM) // enable dual rank DIMM (1 = enable, 0 = disable) ) ddr3_top @@ -286,6 +281,8 @@ ddr3_top #( .dclk_in(i_controller_clk), // Clock input for the dynamic reconfiguration port .user_temp_alarm_out(user_temp_alarm_out) // Temperature-sensor alarm output ); + `else + assign user_temp_alarm_out = 0; `endif diff --git a/testbench/ddr3_dimm_micron_sim_behav.wcfg b/testbench/ddr3_dimm_micron_sim_behav.wcfg index b29ede8..884422d 100644 --- a/testbench/ddr3_dimm_micron_sim_behav.wcfg +++ b/testbench/ddr3_dimm_micron_sim_behav.wcfg @@ -11,15 +11,20 @@ - - - + + + - + - + + + + + + Clocks and Reset label @@ -44,6 +49,14 @@ i_ref_clk i_ref_clk + + i_rst_n + i_rst_n + + + sync_rst + sync_rst + Self-refresh label @@ -56,9 +69,10 @@ user_self_refresh_q user_self_refresh_q - - o_ddr3_cke - o_ddr3_cke + + o_ddr3_cke[0:0] + o_ddr3_cke[0:0] + refresh_counter[8:0] @@ -73,14 +87,493 @@ i_wb_stb i_wb_stb + + cmd_ck_en[0:0] + cmd_ck_en[0:0] + + + [0] + [0] + #FF0080 + true + + + + prev_cmd_ck_en[0:0] + prev_cmd_ck_en[0:0] + + + [0] + [0] + #FFA500 + true + + + + i_controller_cmd[103:0] + i_controller_cmd[103:0] + + [103] + [103] + + + [102] + [102] + + + [101] + [101] + + + [100] + [100] + + + [99] + [99] + + + [98] + [98] + #FF0080 + true + + + [97] + [97] + + + [96] + [96] + + + [95] + [95] + + + [94] + [94] + + + [93] + [93] + + + [92] + [92] + + + [91] + [91] + + + [90] + [90] + + + [89] + [89] + + + [88] + [88] + + + [87] + [87] + + + [86] + [86] + + + [85] + [85] + + + [84] + [84] + + + [83] + [83] + + + [82] + [82] + + + [81] + [81] + + + [80] + [80] + + + [79] + [79] + + + [78] + [78] + + + [77] + [77] + + + [76] + [76] + + + [75] + [75] + + + [74] + [74] + + + [73] + [73] + + + [72] + [72] + #FF0080 + true + + + [71] + [71] + + + [70] + [70] + + + [69] + [69] + + + [68] + [68] + + + [67] + [67] + + + [66] + [66] + + + [65] + [65] + + + [64] + [64] + + + [63] + [63] + + + [62] + [62] + + + [61] + [61] + + + [60] + [60] + + + [59] + [59] + + + [58] + [58] + + + [57] + [57] + + + [56] + [56] + + + [55] + [55] + + + [54] + [54] + + + [53] + [53] + + + [52] + [52] + + + [51] + [51] + + + [50] + [50] + + + [49] + [49] + + + [48] + [48] + + + [47] + [47] + + + [46] + [46] + #FF0080 + true + + + [45] + [45] + + + [44] + [44] + + + [43] + [43] + + + [42] + [42] + + + [41] + [41] + + + [40] + [40] + + + [39] + [39] + + + [38] + [38] + + + [37] + [37] + + + [36] + [36] + + + [35] + [35] + + + [34] + [34] + + + [33] + [33] + + + [32] + [32] + + + [31] + [31] + + + [30] + [30] + + + [29] + [29] + + + [28] + [28] + + + [27] + [27] + + + [26] + [26] + + + [25] + [25] + + + [24] + [24] + + + [23] + [23] + + + [22] + [22] + + + [21] + [21] + + + [20] + [20] + #FF00FF + true + + + [19] + [19] + + + [18] + [18] + + + [17] + [17] + + + [16] + [16] + + + [15] + [15] + + + [14] + [14] + + + [13] + [13] + + + [12] + [12] + + + [11] + [11] + + + [10] + [10] + + + [9] + [9] + + + [8] + [8] + + + [7] + [7] + + + [6] + [6] + + + [5] + [5] + + + [4] + [4] + + + [3] + [3] + + + [2] + [2] + + + [1] + [1] + + + [0] + [0] + + Calibration label + + odelay_cntvalue_halfway + odelay_cntvalue_halfway + + + write_level_fail[7:0] + write_level_fail[7:0] + + + prev_write_level_feedback + prev_write_level_feedback + + + stored_write_level_feedback + stored_write_level_feedback + + + sample_clk_repeat[3:0] + sample_clk_repeat[3:0] + initial_calibration_done initial_calibration_done + + state_calibrate[4:0] + state_calibrate[4:0] + UNSIGNEDDECRADIX + + + instruction_address[4:0] + instruction_address[4:0] + calibration_state[319:0] calibration_state[319:0] @@ -93,26 +586,94 @@ #FFD700 true + + o_phy_odelay_dqs_cntvaluein[4:0] + o_phy_odelay_dqs_cntvaluein[4:0] + UNSIGNEDDECRADIX + + + o_phy_idelay_dqs_cntvaluein[4:0] + o_phy_idelay_dqs_cntvaluein[4:0] + UNSIGNEDDECRADIX + i_ddr3_clk i_ddr3_clk - - io_ddr3_dq[15:0] - io_ddr3_dq[15:0] + + o_ddr3_clk_n[0:0] + o_ddr3_clk_n[0:0] + + + o_ddr3_clk_p[0:0] + o_ddr3_clk_p[0:0] + + + [0] + [0] + #FF0080 + true + - io_ddr3_dqs[1:0] - io_ddr3_dqs[1:0] + io_ddr3_dqs[7:0] + io_ddr3_dqs[7:0] + + + [7] + [7] + + + [6] + [6] + + + [5] + [5] + + + [4] + [4] + + + [3] + [3] + + + [2] + [2] + + + [1] + [1] + #FFFF00 + true + + + [0] + [0] + #FF0080 + true + + + + io_ddr3_dqs_n[7:0] + io_ddr3_dqs_n[7:0] + + + io_ddr3_dq[63:0] + io_ddr3_dq[63:0] - idelay_dqs[1:0] - idelay_dqs[1:0] + idelay_dqs[7:0] + idelay_dqs[7:0] - lane[0:0] - lane[0:0] + lane[2:0] + lane[2:0] UNSIGNEDDECRADIX + #FF00FF + true instruction_address[4:0] @@ -169,12 +730,12 @@ i_wb_addr[25:0] - i_wb_data[127:0] - i_wb_data[127:0] + i_wb_data[511:0] + i_wb_data[511:0] - i_wb_sel[15:0] - i_wb_sel[15:0] + i_wb_sel[63:0] + i_wb_sel[63:0] o_wb_stall @@ -185,20 +746,20 @@ o_wb_ack - o_wb_data[127:0] - o_wb_data[127:0] + o_wb_data[511:0] + o_wb_data[511:0] DDR3 Interface label - - o_ddr3_cke - o_ddr3_cke + + o_ddr3_cke[0:0] + o_ddr3_cke[0:0] - - o_ddr3_cs_n - o_ddr3_cs_n + + o_ddr3_cs_n[0:0] + o_ddr3_cs_n[0:0] o_ddr3_ras_n @@ -221,23 +782,24 @@ o_ddr3_ba_addr[2:0] - io_ddr3_dq[15:0] - io_ddr3_dq[15:0] + io_ddr3_dq[63:0] + io_ddr3_dq[63:0] - io_ddr3_dqs[1:0] - io_ddr3_dqs[1:0] + io_ddr3_dqs[7:0] + io_ddr3_dqs[7:0] + - io_ddr3_dqs_n[1:0] - io_ddr3_dqs_n[1:0] + io_ddr3_dqs_n[7:0] + io_ddr3_dqs_n[7:0] - o_ddr3_dm[1:0] - o_ddr3_dm[1:0] + o_ddr3_dm[7:0] + o_ddr3_dm[7:0] - - o_ddr3_odt - o_ddr3_odt + + o_ddr3_odt[0:0] + o_ddr3_odt[0:0] diff --git a/testbench/sim_defines.vh b/testbench/sim_defines.vh new file mode 100644 index 0000000..c78a248 --- /dev/null +++ b/testbench/sim_defines.vh @@ -0,0 +1,24 @@ +// Define either TWO_LANES_x8 or EIGHT_LANES_x8 +//`define TWO_LANES_x8 +`define EIGHT_LANES_x8 + +`ifdef EIGHT_LANES_x8 + `ifdef TWO_LANES_x8 + ERROR: Display compilation error here + `endif + `define x8 +`endif + +`ifdef TWO_LANES_x8 + `define x16 +`endif + +// Check if neither is defined +`ifndef EIGHT_LANES_x8 + `ifndef TWO_LANES_x8 + ERROR: Display compilation error here + `endif +`endif + +`define den8192Mb +`define sg125 diff --git a/testbench/xsim/README.txt b/testbench/xsim/README.txt index 78eadc0..c7096d3 100644 --- a/testbench/xsim/README.txt +++ b/testbench/xsim/README.txt @@ -4,7 +4,7 @@ # README.txt: Please read the sections below to understand the steps required to # run the exported script and information about the source files. # -# Generated by export_simulation on Sat Jul 27 15:51:00 PST 2024 +# Generated by export_simulation on Sun Jan 26 11:59:04 PST 2025 # ################################################################################ diff --git a/testbench/xsim/test_ecc_1.sh b/testbench/xsim/ddr3_dimm_micron_sim.sh similarity index 61% rename from testbench/xsim/test_ecc_1.sh rename to testbench/xsim/ddr3_dimm_micron_sim.sh index 0a7d431..af223b7 100755 --- a/testbench/xsim/test_ecc_1.sh +++ b/testbench/xsim/ddr3_dimm_micron_sim.sh @@ -9,7 +9,7 @@ # directory, add the library logical mappings in the simulator setup file, create default # 'do/prj' file, execute compilation, elaboration and simulation steps. # -# Generated by Vivado on Sat Jul 27 15:51:00 PST 2024 +# Generated by Vivado on Sun Jan 26 11:32:37 PST 2025 # SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 # # Tool Version Limit: 2022.04 @@ -46,7 +46,7 @@ compile() # RUN_STEP: elaborate() { - xelab -generic_top "ECC_ENABLE=1" --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log + xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log } # RUN_STEP: @@ -64,6 +64,7 @@ setup() echo -e "ERROR: Simulation library directory path not specified (type \"./ddr3_dimm_micron_sim.sh -help\" for more information)\n" exit 1 fi + copy_setup_file $2 ;; "-reset_run" ) reset_run @@ -74,6 +75,7 @@ setup() # do not remove previous data ;; * ) + copy_setup_file $2 esac # Add any setup/initialization commands here:- @@ -82,6 +84,90 @@ setup() } +# Copy xsim.ini file +copy_setup_file() +{ + file="xsim.ini" + lib_map_path="/tools/Xilinx/Vivado/2022.1/data/xsim" + if [[ ($1 != "") ]]; then + lib_map_path="$1" + fi + if [[ ($lib_map_path != "") ]]; then + src_file="$lib_map_path/$file" + if [[ -e $src_file ]]; then + cp $src_file . + fi + + # Map local design libraries to xsim.ini + map_local_libs + + fi +} + +# Map local design libraries +map_local_libs() +{ + updated_mappings=() + local_mappings=() + + # Local design libraries + local_libs=() + + if [[ 0 == ${#local_libs[@]} ]]; then + return + fi + + file="xsim.ini" + file_backup="xsim.ini.bak" + + if [[ -e $file ]]; then + rm -f $file_backup + + # Create a backup copy of the xsim.ini file + cp $file $file_backup + + # Read libraries from backup file and search in local library collection + while read -r line + do + IN=$line + + # Split mapping entry with '=' delimiter to fetch library name and mapping + read lib_name mapping <<<$(IFS="="; echo $IN) + + # If local library found, then construct the local mapping and add to local mapping collection + if `echo ${local_libs[@]} | grep -wq $lib_name` ; then + line="$lib_name=xsim.dir/$lib_name" + local_mappings+=("$lib_name") + fi + + # Add to updated library mapping collection + updated_mappings+=("$line") + done < "$file_backup" + + # Append local libraries not found originally from xsim.ini + for (( i=0; i<${#local_libs[*]}; i++ )); do + lib_name="${local_libs[i]}" + if `echo ${local_mappings[@]} | grep -wvq $lib_name` ; then + line="$lib_name=xsim.dir/$lib_name" + updated_mappings+=("$line") + fi + done + + # Write updated mappings in xsim.ini + rm -f $file + for (( i=0; i<${#updated_mappings[*]}; i++ )); do + lib_name="${updated_mappings[i]}" + echo $lib_name >> $file + done + else + for (( i=0; i<${#local_libs[*]}; i++ )); do + lib_name="${local_libs[i]}" + mapping="$lib_name=xsim.dir/$lib_name" + echo $mapping >> $file + done + fi +} + # Delete generated data from the previous run reset_run() { diff --git a/testbench/xsim/file_info.txt b/testbench/xsim/file_info.txt index 99e2a16..7c471d7 100644 --- a/testbench/xsim/file_info.txt +++ b/testbench/xsim/file_info.txt @@ -1,9 +1,7 @@ -ddr3_controller.v,verilog,xil_defaultlib,../Desktop/UberDDR3/rtl/ddr3_controller.v,incdir="../" -ddr3_phy.v,verilog,xil_defaultlib,../Desktop/UberDDR3/rtl/ddr3_phy.v,incdir="../" -ddr3_top.v,verilog,xil_defaultlib,../Desktop/UberDDR3/rtl/ddr3_top.v,incdir="../" -ddr3.sv,systemverilog,xil_defaultlib,../Desktop/UberDDR3/testbench/ddr3.sv,incdir="../" -ddr3.sv,systemverilog,xil_defaultlib,../Desktop/UberDDR3/testbench/ddr3_module.sv,incdir="../" -ecc_dec.sv,systemverilog,xil_defaultlib,../Desktop/UberDDR3/rtl/ecc/ecc_dec.sv,incdir="../" -ecc_enc.sv,systemverilog,xil_defaultlib,../Desktop/UberDDR3/rtl/ecc/ecc_enc.sv,incdir="../" -ddr3_dimm_micron_sim.sv,systemverilog,xil_defaultlib,../Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv,incdir="../" -glbl.v,Verilog,xil_defaultlib,glbl.v +ddr3_controller.v,verilog,xil_defaultlib,/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_controller.v,incdir="/home/ajacobo/Desktop/UberDDR3/testbench"incdir="/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0" +ddr3_phy.v,verilog,xil_defaultlib,/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v,incdir="/home/ajacobo/Desktop/UberDDR3/testbench"incdir="/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0" +ddr3_top.v,verilog,xil_defaultlib,/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_top.v,incdir="/home/ajacobo/Desktop/UberDDR3/testbench"incdir="/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0" +ddr3.sv,systemverilog,xil_defaultlib,/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv,incdir="/home/ajacobo/Desktop/UberDDR3/testbench"incdir="/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0" +ddr3_module.sv,systemverilog,xil_defaultlib,/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv,incdir="/home/ajacobo/Desktop/UberDDR3/testbench"incdir="/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0" +ddr3_dimm_micron_sim.sv,systemverilog,xil_defaultlib,/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv,incdir="/home/ajacobo/Desktop/UberDDR3/testbench"incdir="/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0" +glbl.v,Verilog,xil_defaultlib,/home/ajacobo/incdir="/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0"/glbl.v diff --git a/testbench/xsim/glbl.v b/testbench/xsim/glbl.v old mode 100644 new mode 100755 diff --git a/testbench/xsim/regression_test.sh b/testbench/xsim/regression_test.sh new file mode 100755 index 0000000..cb508b5 --- /dev/null +++ b/testbench/xsim/regression_test.sh @@ -0,0 +1,145 @@ +#!/bin/bash + +################################################################################################################# + +# Define the test configurations (CONTROLLER_CLK_PERIOD, DDR3_CLK_PERIOD, ODELAY_SUPPORTED, LANES_OPTION, ADD_BUS_DELAY, BIST_MODE) +TESTS=( + # with bus delay + "12_000 3_000 1 EIGHT_LANES 1 1" # DDR3-666 + "10_000 2_500 1 EIGHT_LANES 1 1" # DDR3-800 + "6_000 1_500 1 EIGHT_LANES 1 2" # DDR3-1333 write dm is weird (two happens at same time???) + "5_000 1_250 1 EIGHT_LANES 1 2" # DDR3-1600 + # No bus delays + "12_000 3_000 1 EIGHT_LANES 0 2" + "10_000 2_500 1 EIGHT_LANES 0 2" + "6_000 1_500 1 EIGHT_LANES 0 1" + "5_000 1_250 1 EIGHT_LANES 0 1" + # x16 + "12_000 3_000 1 TWO_LANES 1 1" + "10_000 2_500 1 TWO_LANES 1 1" + "6_000 1_500 1 TWO_LANES 1 2" + "5_000 1_250 1 TWO_LANES 1 2" + # no odelay + "12_000 3_000 0 TWO_LANES 0 2" + "10_000 2_500 0 TWO_LANES 0 2" + "6_000 1_500 0 TWO_LANES 0 1" + "5_000 1_250 0 TWO_LANES 0 1" +) + +################################################################################################################# + +# Define the files to modify +FILENAME="../ddr3_dimm_micron_sim.sv" +DEFINES_FILE="../sim_defines.vh" +PARAMETERS_FILE="../8192Mb_ddr3_parameters.vh" + +# Check if the main file exists +if [[ ! -f "$FILENAME" ]]; then + echo "Error: File '$FILENAME' does not exist." + exit 1 +fi + +# Check if the defines file exists +if [[ ! -f "$DEFINES_FILE" ]]; then + echo "Error: File '$DEFINES_FILE' does not exist." + exit 1 +fi + +# Check if the parameters file exists +if [[ ! -f "$PARAMETERS_FILE" ]]; then + echo "Error: File '$PARAMETERS_FILE' does not exist." + exit 1 +fi + +################################################################################################################# + +# Loop over each test configuration +index=1 +for TEST in "${TESTS[@]}"; do + # Parse the test configuration into individual variables + read -r CONTROLLER_CLK_PERIOD DDR3_CLK_PERIOD ODELAY_SUPPORTED LANES_OPTION ADD_BUS_DELAY BIST_MODE <<< "$TEST" + + # Record the start time + start_time=$(date +%s) + start_time_am_pm=$(date +"%I:%M %p") # Time in AM-PM format + + # Print the current test configuration with the start time + echo "$index. Running test with CONTROLLER_CLK_PERIOD=$CONTROLLER_CLK_PERIOD, DDR3_CLK_PERIOD=$DDR3_CLK_PERIOD, ODELAY_SUPPORTED=$ODELAY_SUPPORTED, LANES_OPTION=$LANES_OPTION, ADD_BUS_DELAY=$ADD_BUS_DELAY, BIST_MODE=$BIST_MODE" + echo " Test started at: $start_time_am_pm" + + # Use sed to perform the replacements in the main file + sed -i \ + -e "s/CONTROLLER_CLK_PERIOD = [0-9_]\+/CONTROLLER_CLK_PERIOD = $CONTROLLER_CLK_PERIOD/" \ + -e "s/DDR3_CLK_PERIOD = [0-9_]\+/DDR3_CLK_PERIOD = $DDR3_CLK_PERIOD/" \ + -e "s/ODELAY_SUPPORTED = [01]/ODELAY_SUPPORTED = $ODELAY_SUPPORTED/" \ + -e "s/BIST_MODE = [0-2]/BIST_MODE = $BIST_MODE/" \ + "$FILENAME" + + # Modify the sim_defines.vh file based on LANES_OPTION + if [[ "$LANES_OPTION" == "TWO_LANES" ]]; then + sed -i \ + -e "s|^//\(\`define TWO_LANES_x8\)|\1|" \ + -e "s|^\(\`define EIGHT_LANES_x8\)|//\1|" \ + "$DEFINES_FILE" + elif [[ "$LANES_OPTION" == "EIGHT_LANES" ]]; then + sed -i \ + -e "s|^//\(\`define EIGHT_LANES_x8\)|\1|" \ + -e "s|^\(\`define TWO_LANES_x8\)|//\1|" \ + "$DEFINES_FILE" + else + echo "Error: Invalid LANES_OPTION value. Choose either 'TWO_LANES' or 'EIGHT_LANES'." + exit 1 + fi + + # Modify the parameters file based on ADD_BUS_DELAY + if [[ "$ADD_BUS_DELAY" == "1" ]]; then + sed -i \ + -e "s|BUS_DELAY = [0-9]\+|BUS_DELAY = 100|" \ + -e "s|FLY_BY_DELAY_LANE_0 = [0-9]\+|FLY_BY_DELAY_LANE_0 = 0|" \ + -e "s|FLY_BY_DELAY_LANE_1 = [0-9]\+|FLY_BY_DELAY_LANE_1 = 50|" \ + -e "s|FLY_BY_DELAY_LANE_2 = [0-9]\+|FLY_BY_DELAY_LANE_2 = 100|" \ + -e "s|FLY_BY_DELAY_LANE_3 = [0-9]\+|FLY_BY_DELAY_LANE_3 = 150|" \ + -e "s|FLY_BY_DELAY_LANE_4 = [0-9]\+|FLY_BY_DELAY_LANE_4 = 200|" \ + -e "s|FLY_BY_DELAY_LANE_5 = [0-9]\+|FLY_BY_DELAY_LANE_5 = 250|" \ + -e "s|FLY_BY_DELAY_LANE_6 = [0-9]\+|FLY_BY_DELAY_LANE_6 = 300|" \ + -e "s|FLY_BY_DELAY_LANE_7 = [0-9]\+|FLY_BY_DELAY_LANE_7 = 350|" \ + "$PARAMETERS_FILE" + else + sed -i \ + -e "s|BUS_DELAY = [0-9]\+|BUS_DELAY = 0|" \ + -e "s|FLY_BY_DELAY_LANE_0 = [0-9]\+|FLY_BY_DELAY_LANE_0 = 0|" \ + -e "s|FLY_BY_DELAY_LANE_1 = [0-9]\+|FLY_BY_DELAY_LANE_1 = 0|" \ + -e "s|FLY_BY_DELAY_LANE_2 = [0-9]\+|FLY_BY_DELAY_LANE_2 = 0|" \ + -e "s|FLY_BY_DELAY_LANE_3 = [0-9]\+|FLY_BY_DELAY_LANE_3 = 0|" \ + -e "s|FLY_BY_DELAY_LANE_4 = [0-9]\+|FLY_BY_DELAY_LANE_4 = 0|" \ + -e "s|FLY_BY_DELAY_LANE_5 = [0-9]\+|FLY_BY_DELAY_LANE_5 = 0|" \ + -e "s|FLY_BY_DELAY_LANE_6 = [0-9]\+|FLY_BY_DELAY_LANE_6 = 0|" \ + -e "s|FLY_BY_DELAY_LANE_7 = [0-9]\+|FLY_BY_DELAY_LANE_7 = 0|" \ + "$PARAMETERS_FILE" + fi + + # Run the simulation script with the respective log file + LOG_FILE="./test_${CONTROLLER_CLK_PERIOD}_ddr3_${DDR3_CLK_PERIOD}_odelay_${ODELAY_SUPPORTED}_lanes_${LANES_OPTION,,}_bus_delay_${ADD_BUS_DELAY}_bist_${BIST_MODE}.log" + # ./ddr3_dimm_micron_sim.sh >> "$LOG_FILE" + # add timeout if simulation takes too long + timeout 3h ./ddr3_dimm_micron_sim.sh >> "$LOG_FILE" 2>&1 + EXIT_CODE=$? # Capture exit code immediately + if [ $EXIT_CODE -eq 124 ]; then + echo " Error: Simulation timed out after 1 hour!" | tee -a "$LOG_FILE" + fi + + # Record the end time and calculate the duration in minutes + end_time=$(date +%s) + duration=$((end_time - start_time)) + minutes=$((duration / 60)) + seconds=$((duration % 60)) + + # Report the results + echo " Test completed. Duration: ${minutes}m ${seconds}s. Results saved to '$LOG_FILE'." + echo "" + + # Increment the index + ((index++)) +done + +################################################################################################################# diff --git a/testbench/xsim/run_batch.sh b/testbench/xsim/run_batch.sh deleted file mode 100755 index 4e25ba0..0000000 --- a/testbench/xsim/run_batch.sh +++ /dev/null @@ -1,26 +0,0 @@ -rm -rf *backup* -rm -rf *test_ecc*.log* -echo -e "\e[32mRun test: test_ecc_0 \e[0m" -./test_ecc_0.sh -reset_run -./test_ecc_0.sh >> ./test_ecc_0.log -./test_ecc_0.sh -reset_run - -echo "" -echo "" -echo -e "\e[32mRun test: test_ecc_1 \e[0m" -./test_ecc_1.sh >> ./test_ecc_1.log -./test_ecc_1.sh -reset_run - -echo "" -echo "" -echo -e "\e[32mRun test: test_ecc_2 \e[0m" -./test_ecc_2.sh >> ./test_ecc_2.log -./test_ecc_2.sh -reset_run - -echo "" -echo "" -echo -e "\e[32mRun test: test_ecc_3 \e[0m" -./test_ecc_3.sh >> ./test_ecc_3.log -./test_ecc_3.sh -reset_run - -rm -rf *backup* diff --git a/testbench/xsim/test_10_000_ddr3_2_500_odelay_0_lanes_two_lanes_bus_delay_0.log b/testbench/xsim/test_10_000_ddr3_2_500_odelay_0_lanes_two_lanes_bus_delay_0.log new file mode 100644 index 0000000..c48381b --- /dev/null +++ b/testbench/xsim/test_10_000_ddr3_2_500_odelay_0_lanes_two_lanes_bus_delay_0.log @@ -0,0 +1,11319 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:594] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:595] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:597] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:598] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:599] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:600] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:846] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:847] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:849] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:850] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:851] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:852] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:853] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1030] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1031] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1033] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1034] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1035] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1036] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(ROW_BITS=16,MICR... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(ROW_BITS=16,LANES=2,ODE... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=1... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 11 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 128 +wb_sel_bits = 16 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 2 +WRITE_SLOT = 3 +ACTIVATE_SLOT = 0 +PRECHARGE_SLOT = 1 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 6 +CWL = 5 +PRECHARGE_TO_ACTIVATE_DELAY = 1 +ACTIVATE_TO_WRITE_DELAY = 0 +ACTIVATE_TO_READ_DELAY = 0 +ACTIVATE_TO_PRECHARGE_DELAY = 3 +ACTIVATE_TO_ACTIVATE_DELAY = 0 +READ_TO_WRITE_DELAY = 1 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 6 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> +[ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> +[ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> +[ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> +[ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> +[ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> +[ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> +[ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> +[ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] MRS -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.cmd_task at time 1523750.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_0.cmd_task: at time 1893750.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ZQC -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 104) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 109) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 112) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 114) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 149) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 159) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 179) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 194) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 199) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 102) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 107) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 112) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 172) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 0) -> +[ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> +[ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 0) -> +[ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> +[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 0) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> +[ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 52860 ns +Time Done: 77430 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +FAILED: Address = 1151, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092f75e2592f6502592f5422592f43425, read data = 00000000000000000000000123456789 @ 77510000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 32768) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 32768) -> +[ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> +[ 2500 ps] ACT @ (3, 32768) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32768) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 32768) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 32768) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 32768) -> [ 7500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 32768) -> +[ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 2500 ps] ACT @ (0, 32769) -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 32769) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32768) -> +[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32768) -> [ 5000 ps] RD @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32768) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32768) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 32768) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> +[ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (6, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32768) -> [ 5000 ps] RD @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32769) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32769) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 77430 ns +Time Done: 102020 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +FAILED: Address = 33555583, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000faf75ef5faf650f5faf542f5faf434f5, read data = 00000000000000000000000123456789 @ 102100000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 65535) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 65535) -> +[ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> +[ 2500 ps] ACT @ (3, 65535) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 65535) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 65535) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 65535) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 65535) -> [ 7500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 65535) -> +[ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 65535) -> +[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 65535) -> [ 5000 ps] RD @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 65535) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65535) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 65535) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 65535) -> +[ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 65535) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65535) -> [ 5000 ps] RD @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 102020 ns +Time Done: 126610 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 67108991, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521a8fa4521981a4521873a4521765a4, read data = 00000000000000000000000123456789 @ 126690000.0 ps +[ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2582) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2043) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1503) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 963) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 154) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64881) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64341) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63532) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63262) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62722) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62183) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62452) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61643) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61373) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60294) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60564) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60024) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59485) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58945) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59215) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57866) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57326) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56787) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57056) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 56247) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55707) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55168) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54628) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54089) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 53549) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53819) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52740) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53009) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52470) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51391) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51660) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50851) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50581) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50311) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 49502) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49772) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49232) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48693) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48153) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48423) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47074) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45995) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46264) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45455) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44915) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44106) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44376) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43836) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43297) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] ACT @ (4, 42757) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41948) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41678) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41138) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40599) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40868) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40059) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39789) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38710) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38980) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38440) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37901) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 37361) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37631) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36821) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36282) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35742) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35203) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34663) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34123) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33584) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33044) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32505) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31965) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31156) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31425) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30886) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30346) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29807) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28997) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29267) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28188) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27648) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27918) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26839) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26569) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25760) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26029) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25490) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24950) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24411) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24680) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23871) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23331) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22792) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22252) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 21713) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21173) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20364) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20633) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20094) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19554) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19015) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18205) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18475) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17935) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17396) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16856) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16317) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16047) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15777) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 14968) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15237) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14698) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14158) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13619) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13888) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13079) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12539) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12000) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11460) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11730) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 10921) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10651) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10381) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9572) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9841) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9302) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8762) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 8223) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8492) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7683) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7143) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6604) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6064) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5525) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5255) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4985) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 4176) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4445) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3906) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3366) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3636) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2827) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3096) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] ACT @ (4, 2017) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2287) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1747) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 668) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 938) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65395) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 128) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65125) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64585) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64046) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64315) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 63506) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62966) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 62157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62427) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61887) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61348) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60808) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59999) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60268) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59729) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58650) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58919) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58110) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58380) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57840) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57570) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 56761) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57031) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56491) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55952) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55412) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55682) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54603) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54333) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53254) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53523) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52714) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52444) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51365) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51635) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51095) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50556) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 50016) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50286) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49207) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49476) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48937) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48397) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47858) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47318) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47048) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46778) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45969) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46239) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45699) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45160) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45429) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44620) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43811) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 43271) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43541) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43001) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42462) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42731) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41922) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41652) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41382) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40573) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40843) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40303) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39764) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39224) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39494) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37605) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37066) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37335) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 36526) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36256) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35717) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35986) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35177) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35447) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34907) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34368) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33828) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34098) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33019) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33288) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32749) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32209) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31670) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30860) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31130) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 30321) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30590) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29511) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29781) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28972) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28702) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28432) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27623) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27892) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27353) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] ACT @ (4, 26813) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 26274) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25734) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25194) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24655) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24115) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24385) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23576) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23036) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 22227) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22496) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21417) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20878) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20068) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20338) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 19529) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19798) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19259) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18719) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18989) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18180) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17910) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17640) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16831) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16561) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16021) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 15482) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15751) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14672) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14942) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14402) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13863) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13323) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13593) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 12784) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12514) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11974) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12244) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11435) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11704) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11165) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10625) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 10086) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9276) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9546) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9006) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8467) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7927) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7388) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7118) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6848) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 6039) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6308) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5229) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 4690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4959) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3610) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2531) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2801) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1992) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1722) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1452) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 643) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 912) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 373) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65369) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 64830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64290) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63750) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63211) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62671) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61862) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62131) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61592) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61052) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60513) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60782) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59973) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60243) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59703) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59433) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 58624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58894) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58354) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57815) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57275) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57545) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56196) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55656) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55117) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55386) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54577) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54307) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54037) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 53228) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53498) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52958) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52419) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52149) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51879) -> [ 7500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51070) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51339) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50800) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50260) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49721) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49181) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48911) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 47832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48102) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47562) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47023) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46483) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46753) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45404) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44864) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44325) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44594) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43785) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42436) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42706) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42166) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41627) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 41087) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40547) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40008) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39468) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38929) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38389) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37849) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 37040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37310) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36770) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36231) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36500) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35691) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34882) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34612) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34072) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33533) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33802) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32993) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32723) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31644) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31914) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31374) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30835) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 30295) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30565) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29486) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29755) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29216) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28676) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28137) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27597) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27057) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26518) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25978) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26248) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25439) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24899) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24090) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24359) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23820) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23280) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 22741) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21931) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22201) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 21392) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21661) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20582) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20852) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19773) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19503) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18694) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18963) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18424) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17884) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17345) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17614) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16805) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16265) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15726) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15186) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 14647) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14377) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14107) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13298) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13567) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13028) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12488) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11949) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11409) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11139) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10869) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10330) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9790) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10060) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9251) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8981) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8711) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7902) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8171) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7632) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7092) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 6553) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6822) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6013) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5473) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4934) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4394) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3855) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3315) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2506) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2775) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1696) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1157) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1426) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 347) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 617) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 77) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65074) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64804) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63995) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63725) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63455) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62646) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62915) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62376) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61836) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 61297) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61566) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60757) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59678) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59138) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58598) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58059) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57519) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56980) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57249) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56440) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55900) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55091) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55361) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54821) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54282) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 53742) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52933) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52663) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52123) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51853) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51044) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50774) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49695) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49965) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49425) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48886) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48346) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48616) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47267) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46727) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46188) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46457) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 45648) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45378) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45108) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44569) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44029) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43490) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42950) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42141) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42410) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41871) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41331) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40792) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41061) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40252) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39982) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39712) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 38903) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39173) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38633) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 37554) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37824) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36475) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35935) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] ACT @ (0, 35396) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35665) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 34856) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34316) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33777) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33237) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32698) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32158) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31349) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31618) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31079) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30539) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30000) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30269) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29460) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29730) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29190) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28920) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 28111) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28381) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27841) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27302) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26762) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27032) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26222) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25683) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25143) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24604) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24873) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24064) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23524) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22985) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22445) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22715) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 21906) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21636) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21096) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21366) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20557) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20826) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20287) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19747) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19208) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19477) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18398) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18668) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18128) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17589) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17049) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17319) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16510) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16779) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16240) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15970) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 15161) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15430) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14891) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14351) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13812) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14081) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13002) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13272) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12732) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12193) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11653) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11923) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11114) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10844) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10574) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9765) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10034) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9495) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8955) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 8416) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7606) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7876) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7336) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6797) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6257) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6527) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5718) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5448) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5178) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 4369) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4638) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3559) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3829) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3020) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3289) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2210) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2480) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 1671) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1940) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 861) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1131) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65318) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64509) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64239) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63699) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63160) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63429) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62620) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61541) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61001) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61271) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60462) -> [ 7500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59922) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 59113) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59382) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58843) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58303) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58573) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57764) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58033) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56954) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57224) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 56415) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55605) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55875) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54796) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54526) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53986) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53447) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53716) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52907) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52637) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52367) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51558) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51828) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51288) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50749) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 50209) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50479) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49400) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49669) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49130) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48590) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48320) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47511) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47241) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46971) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46162) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46432) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45892) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45353) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45622) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44813) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44004) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44273) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 43464) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43734) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42655) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42924) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42115) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41845) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41575) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40766) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40496) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39957) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39417) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39687) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38338) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37798) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37259) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37528) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 36719) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36179) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35640) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35100) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34561) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34021) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33212) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33481) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32942) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32402) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31863) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31323) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31053) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30783) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 29974) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30244) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29704) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28625) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28895) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27546) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27006) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26467) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26736) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25927) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25387) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24578) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24848) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24308) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23769) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 23229) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22689) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22150) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21610) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20261) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20531) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19991) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2582) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2043) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1503) -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 694) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 963) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 154) -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65420) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64881) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64611) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64341) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63532) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63262) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> +[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62722) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62183) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62452) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 61913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61643) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61373) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60564) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60294) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60024) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59485) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 59215) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58945) -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58136) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58405) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57866) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57326) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56787) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57056) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56247) -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55977) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55707) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 55168) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54898) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54628) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54089) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53819) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53549) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52740) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52470) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 5000 ps] RD @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51930) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51391) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51660) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50851) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50581) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50311) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49772) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49502) -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49232) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48693) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 48423) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48153) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47344) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47074) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46804) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45995) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46264) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45455) -> [ 5000 ps] RD @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45185) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44915) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44376) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44106) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43836) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43297) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43027) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42757) -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41948) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42217) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 41678) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41138) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40599) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40059) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39250) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 38980) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38710) -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38440) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37901) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37631) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37361) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36552) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36821) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 36282) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35742) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35203) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35472) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34393) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34663) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 34123) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33044) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32505) -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31695) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31965) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31425) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31156) -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30886) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30346) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 30076) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29807) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28997) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29267) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28727) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28188) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27648) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27918) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 27378) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27109) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26569) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26029) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25760) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25490) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24950) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24680) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24411) -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23601) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23871) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 23331) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22792) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22252) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21713) -> +[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21443) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21173) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 20633) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20364) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19554) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19284) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19015) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18205) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18475) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17935) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 5000 ps] RD @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17396) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16856) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17126) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16317) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16047) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15777) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15237) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14968) -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14698) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14158) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 13888) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13619) -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13079) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12539) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12000) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11460) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11730) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10921) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10651) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10381) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 9841) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9572) -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9302) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8762) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 8492) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8223) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7413) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7683) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 7143) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6874) -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6604) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6064) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5525) -> [ 5000 ps] RD @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5255) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4985) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4445) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4176) -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3906) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3366) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3096) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2827) -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2017) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2287) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 1747) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 668) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65395) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 128) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 65125) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64855) -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64046) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64315) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63506) -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63236) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62966) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62427) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62157) -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61348) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 61078) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60808) -> +[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59999) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60268) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 59729) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58650) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58919) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58110) -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57840) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57301) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57570) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57031) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56761) -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56491) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55952) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55682) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55412) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54603) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 54333) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> +[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53793) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53254) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53523) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 52984) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52714) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52444) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51635) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51365) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51095) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50556) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50825) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50286) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50016) -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49207) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49476) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48937) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48397) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47858) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47318) -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47048) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46778) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 46239) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45969) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45699) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45160) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44890) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44620) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43811) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43541) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 5000 ps] RD @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43001) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42462) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42731) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41922) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41652) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41382) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 40843) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40573) -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40303) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39764) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 39494) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39224) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38415) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 38145) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37875) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37605) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37066) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37335) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36526) -> [ 5000 ps] RD @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36256) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35986) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35447) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35177) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34907) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34368) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34098) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33828) -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33019) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33288) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 32749) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32209) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31670) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30860) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31130) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 30590) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30321) -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29511) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29781) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28972) -> [ 5000 ps] RD @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28702) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28432) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27892) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27623) -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27353) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26813) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26543) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26274) -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25464) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25734) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 25194) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24655) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24115) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24385) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23576) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22227) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22496) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21417) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 21147) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20878) -> +[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20068) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20338) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 19798) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19259) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18719) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18989) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18180) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17910) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17640) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17100) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16831) -> [ 5000 ps] RD @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16561) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16021) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15751) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15482) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14672) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14942) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 14402) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13863) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13323) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13593) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 13053) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12784) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12514) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12244) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11704) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11435) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10625) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10895) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10086) -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9276) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9546) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 9006) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8467) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7927) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7388) -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7118) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6848) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 6308) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6039) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5229) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4959) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4690) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3880) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3610) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 5000 ps] RD @ (4, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3071) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2531) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2801) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1992) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1722) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1452) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 912) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 643) -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 373) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65369) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 65099) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64830) -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64020) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64290) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63750) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63481) -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63211) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62671) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61862) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 61592) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 5000 ps] RD @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61052) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60513) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60782) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59973) -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59703) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59433) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58894) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58624) -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58354) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57815) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 57545) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57275) -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56466) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56196) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55926) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55656) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55117) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55386) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54577) -> [ 5000 ps] RD @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54307) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54037) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53498) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53228) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52958) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52419) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52149) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51879) -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51070) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51339) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 50800) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50260) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49721) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49181) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48911) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48372) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48102) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47832) -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47562) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47023) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46753) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46483) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45674) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 45404) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> +[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44864) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44325) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44594) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43785) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42706) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42436) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42166) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41627) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41896) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41357) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41087) -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40278) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40547) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 40008) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39468) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38929) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38389) -> +[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38119) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37849) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 37310) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37040) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36770) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36231) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35961) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35691) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34882) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34612) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34072) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33533) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33802) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32993) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31644) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31914) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31374) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30835) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30565) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30295) -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29486) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29755) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29216) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28676) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28137) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28406) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27327) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27597) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27057) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26518) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25978) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26248) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25439) -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25169) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24899) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 24359) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24090) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23820) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23280) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 23010) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22741) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21931) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22201) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 21661) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21122) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20582) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20852) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20043) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19503) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18963) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18694) -> +[ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18424) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17884) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 17614) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17345) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16535) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16805) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 16265) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15996) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15726) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15186) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14647) -> [ 5000 ps] RD @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14377) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14107) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13567) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13298) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13028) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12488) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12218) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11949) -> +[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11139) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11409) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 10869) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10330) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9790) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10060) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9251) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8981) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8711) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8171) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7902) -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7632) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7092) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6822) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6553) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5743) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6013) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 5473) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> +[ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4934) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4394) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4664) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3855) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3315) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 2775) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2506) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1696) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1426) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1157) -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 347) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 617) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 77) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65074) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64534) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63995) -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63725) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63455) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 62915) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62646) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62376) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61836) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61566) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61297) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60487) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60757) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60217) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59678) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59138) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59408) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58329) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58598) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58059) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56980) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57249) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56440) -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56170) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55900) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 55361) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55091) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54821) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54282) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 54012) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53742) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52933) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52663) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 5000 ps] RD @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52123) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51584) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51853) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51044) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50774) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49965) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49695) -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49425) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48886) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 48616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48346) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47537) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47267) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46997) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46188) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46457) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45648) -> [ 5000 ps] RD @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45378) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45108) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44569) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44299) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44029) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43490) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43220) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42950) -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42141) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42410) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41871) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41331) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40792) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41061) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40252) -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39982) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39712) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 39173) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38903) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38633) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38094) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37824) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37554) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36745) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 36475) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 5000 ps] RD @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35935) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35396) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35665) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34856) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34316) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33777) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33507) -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33237) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32698) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 32428) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32158) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31349) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31618) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31079) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30809) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30539) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30000) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30269) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29460) -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29190) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28920) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28381) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28111) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27841) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27302) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27032) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26762) -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25953) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26222) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 25683) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25143) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24604) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24873) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23794) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24064) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 23524) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23255) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22985) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22445) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22715) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21906) -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21636) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21366) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20826) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20557) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20287) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19747) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19477) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19208) -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18398) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18668) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 18128) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17589) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17049) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17319) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16510) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16240) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15970) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15430) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15161) -> [ 5000 ps] RD @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14891) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14351) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 14081) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13812) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13002) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13272) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12732) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> +[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12193) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11653) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11923) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 11383) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11114) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10844) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10574) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10034) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9765) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9495) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8955) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9225) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8685) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8416) -> [ 5000 ps] RD @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7606) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7876) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 7336) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6797) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6257) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6527) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5718) -> +[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5448) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5178) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 4638) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4369) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3559) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3289) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3020) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2750) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2210) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2480) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1940) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1401) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 861) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1131) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 322) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65318) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64509) -> +[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64239) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63699) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 63429) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63160) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62350) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62620) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 62080) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61811) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61541) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61001) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61271) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60462) -> [ 5000 ps] RD @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60192) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59922) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59382) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59113) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58843) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58303) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58033) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57764) -> +[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56954) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57224) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 56684) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55605) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55875) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54796) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 54526) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54256) -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53986) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53447) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53716) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52907) -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52637) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52367) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51828) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51288) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50749) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 50479) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50209) -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49400) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49669) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49130) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48860) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48590) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48051) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48320) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47511) -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47241) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46971) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46432) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46162) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45892) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45353) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 45083) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44813) -> +[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44004) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44273) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 43734) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42655) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42924) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42115) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41845) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41575) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41036) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40766) -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40496) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39957) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39687) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39417) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38608) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 38338) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> +[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37798) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37259) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37528) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 36989) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36719) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36179) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35640) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35370) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34561) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34830) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34291) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34021) -> [ 5000 ps] RD @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33212) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33481) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32942) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32402) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31863) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31323) -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31053) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30783) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 30244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29974) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29704) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29165) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28895) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28625) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27816) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27546) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 5000 ps] RD @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27006) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26467) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26736) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25927) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25387) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24578) -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24308) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23769) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 23499) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23229) -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22420) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22689) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 22150) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21880) -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21610) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21071) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20261) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20531) -> [ 7500 ps] NOP -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 126610 ns +Time Done: 236250 ns +Average Rate: 47 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19991) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +FAILED: Address = 75846088, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c9c1ad56c8b3ad56c7a5ad56c697ad, read data = 00000000000000000000000123456789 @ 236370000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 238640 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:12 ; elapsed = 00:06:12 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1531 ; free virtual = 10748 +## quit +INFO: xsimkernel Simulation Memory Usage: 154168 KB (Peak: 208428 KB), Simulation CPU Usage: 370880 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 23:03:11 2025... diff --git a/testbench/xsim/test_ecc_0.log b/testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_eight_lanes_bus_delay_0.log similarity index 87% rename from testbench/xsim/test_ecc_0.log rename to testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_eight_lanes_bus_delay_0.log index cee36ce..0433702 100644 --- a/testbench/xsim/test_ecc_0.log +++ b/testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_eight_lanes_bus_delay_0.log @@ -1,77 +1,54 @@ ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_controller.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_controller -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_phy -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_top.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_top INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib INFO: [VRFC 10-311] analyzing module ddr3 -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ecc/ecc_dec.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ecc_dec -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ecc/ecc_enc.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ecc_enc -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib INFO: [VRFC 10-311] analyzing module ddr3_module -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module glbl +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim Vivado Simulator v2022.1 Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. -Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab -generic_top ECC_ENABLE=0 --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log Multi-threading is on. Using 14 slave threads. Starting static elaboration Pass Through NonSizing Optimizer -WARNING: [VRFC 10-3532] module 'glbl' does not have a parameter named 'ECC_ENABLE' to override [/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v:6] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:202] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:203] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:205] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:206] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:207] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:208] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:209] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:211] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:263] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:264] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:266] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:267] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:268] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:269] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:270] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:272] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:366] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:367] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:369] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:370] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:371] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:372] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:644] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:645] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:647] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:648] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:649] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:650] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:651] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:799] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:800] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:802] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:803] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:804] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:805] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1143] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1144] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1146] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1147] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1148] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1149] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1150] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1152] -WARNING: [VRFC 10-3091] actual bit length 1 differs from formal bit length 2 for port 'ck' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:248] -WARNING: [VRFC 10-3091] actual bit length 1 differs from formal bit length 2 for port 'ck_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:249] -WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:259] -WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:246] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:264] +WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:251] Completed static elaboration Starting simulation data flow analysis Completed simulation data flow analysis @@ -91,9 +68,7 @@ Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... Compiling module unisims_ver.IDELAYCTRL_default -Compiling module unisims_ver.DCIRESET Compiling module xil_defaultlib.ddr3_phy(ROW_BITS=16,ODELAY_SUPP... Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=1... Compiling module xil_defaultlib.ddr3_default @@ -138,7 +113,7 @@ WB2_ADDR_BITS = 7 WB2_DATA_BITS = 32 ECC_ENABLE = 0 ECC_INFORMATION_BITS = 57 -WB_ERROR = 0 +WB_ERROR = 1 CONTROLLER LOCALPARAMS: ----------------------------- @@ -165,6 +140,7 @@ PRECHARGE_TO_ACTIVATE_DELAY = 1 ACTIVATE_TO_WRITE_DELAY = 0 ACTIVATE_TO_READ_DELAY = 0 ACTIVATE_TO_PRECHARGE_DELAY = 3 +ACTIVATE_TO_ACTIVATE_DELAY = 0 READ_TO_WRITE_DELAY = 1 READ_TO_READ_DELAY = 0 READ_TO_PRECHARGE_DELAY = 1 @@ -174,6 +150,53 @@ WRITE_TO_PRECHARGE_DELAY = 4 STAGE2_DATA_DEPTH = 2 READ_ACK_PIPE_WIDTH = 6 + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. @@ -182,9 +205,15 @@ ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no + ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -[x ps] MRS -> Timing Violation Error : The low pulse of RST signal at time 20.000 ns in DCIRESET has to be greater than 100 ns -Timing Violation Error : The high pulse of RST signal at time 90.000 ns in DCIRESET has to be greater than 100 ns -[110724 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [110724 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -208,6 +237,14 @@ ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 510100.0 ps WARNING: 200 us ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U1R1.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R1.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R1.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R1.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R1.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R1.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R1.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R1.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -249,15 +286,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 510100.0 ps WARNING: 200 us [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -13615,7 +13652,417 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> +[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 5000 ps] RD @ (4, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -13629,8 +14076,434 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 1) -> +[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 238580 ns +Time Done: 263150 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 263230000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> +[ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 0) -> [ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (2, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -13643,6 +14516,326 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] WR @ (2, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 0) -> +[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> +[ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 0) -> [ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] WR @ (7, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -13654,8 +14847,676 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 1) -> +[ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> +[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> +[ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> @@ -13729,2054 +15590,73 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> -[ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> -[ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 264200000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> - --------------------------------- -DONE TEST 1: FIRST ROW -Number of Operations: 2304 -Time Started: 238580 ns -Time Done: 265120 ns -Average Rate: 11 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 0) -> -[ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> -[ 2500 ps] ACT @ (2, 0) -> [ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 968) -> [ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] WR @ (4, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 0) -> -[ 7500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> -[ 2500 ps] ACT @ (7, 0) -> [ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 968) -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> -[ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> -[ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 290760000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> -------------------------------- DONE TEST 1: MIDDLE ROW Number of Operations: 2304 -Time Started: 265120 ns -Time Done: 291680 ns -Average Rate: 11 ns/request +Time Started: 263150 ns +Time Done: 287740 ns +Average Rate: 10 ns/request -------------------------------- -[ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 32767) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> +[ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 287820000.0 ps +[ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 32767) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> @@ -15856,7 +15736,27 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> @@ -16030,27 +15930,7 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 7500 ps] NOP -> +[ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 32767) -> [ 7500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> @@ -16188,8 +16068,28 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> @@ -16209,218 +16109,445 @@ Average Rate: 11 ns/request [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32767) -> -[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> +[ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (1, 32767) -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 5000 ps] RD @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32767) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32767) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 32767) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> @@ -16440,476 +16567,431 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32767) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32767) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> -[ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 5000 ps] RD @ (5, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32767) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> +[ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32767) -> [ 5000 ps] RD @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32768) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 287740 ns +Time Done: 312330 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> +FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 312410000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 48962) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45725) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26299) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 19824) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1478) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64855) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> @@ -16929,271 +17011,7 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (1, 32768) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 317300000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> --------------------------------- -DONE TEST 1: LAST ROW -Number of Operations: 2304 -Time Started: 291680 ns -Time Done: 318220 ns -Average Rate: 11 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (4, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 694) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 59754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 32774) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 27378) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12270) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 3636) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 398) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -17292,274 +17110,271 @@ Average Rate: 11 ns/request [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 7657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] ACT @ (0, 5499) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 2261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> +[ 2500 ps] ACT @ (4, 7657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48372) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 41896) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47292) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38659) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> +[ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 21392) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24629) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 12758) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18154) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9520) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> +[ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> +[ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 55631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 56710) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 49155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 45918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] ACT @ (0, 51314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> +[ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 22175) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27571) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> @@ -17661,6 +17476,253 @@ Average Rate: 11 ns/request [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 29434) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 296) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62594) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 36693) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24822) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14030) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 7555) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4317) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64457) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59061) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60141) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> @@ -17679,254 +17741,10 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> -[ 2500 ps] ACT @ (0, 36989) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> +[ 2500 ps] ACT @ (0, 51507) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32672) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 30514) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 24038) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 20801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 1375) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 60436) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 46406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 31297) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 28060) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 19426) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 8634) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 2159) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 64457) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61220) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59061) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 55824) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> @@ -18024,6 +17842,250 @@ Average Rate: 11 ns/request [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7260) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5101) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 784) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64162) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62004) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50132) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 47974) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44736) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33944) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32865) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27469) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25311) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 18835) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61708) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 55233) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51995) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49837) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43362) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40124) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37966) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33649) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34728) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31490) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32570) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30411) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28253) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29332) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 26094) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22857) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23936) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -18042,253 +18104,9 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5101) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> -[ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19619) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 400) -> [ 2500 ps] ACT @ (0, 17461) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 784) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64162) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 49053) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 42578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 40419) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33944) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32865) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 22073) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 19915) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 13439) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 64946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61708) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55233) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 56312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 49837) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 46599) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 35807) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33649) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34728) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31490) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30411) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28253) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29332) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26094) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 27174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22857) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23936) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 20698) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19619) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 17461) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -18387,6 +18205,250 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38750) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35512) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36591) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34433) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 27957) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 977) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 64355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43850) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 37375) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16870) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13632) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14712) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 8236) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4999) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57584) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53268) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -18405,252 +18467,8 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36591) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 35512) -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34433) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 31195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27957) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 29037) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 22561) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 19324) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18245) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 10690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 4215) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 2057) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 65434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 58959) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55721) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56801) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 47088) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 38454) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 31979) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 29820) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 26583) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 17949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13632) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 11474) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8236) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 9316) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 2840) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 65139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59743) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53268) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50030) -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -18747,12 +18565,256 @@ Average Rate: 11 ns/request [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 387) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63764) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59447) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52972) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 46497) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47576) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43259) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42180) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37863) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34626) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32467) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21675) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 17358) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18438) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15200) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 91) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62390) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60231) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 55914) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 53756) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50518) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48360) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49439) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42964) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41885) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39726) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36489) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35410) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33251) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 26776) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27855) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24618) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21380) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22459) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19221) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20301) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18142) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17063) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> @@ -18772,254 +18834,10 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] ACT @ (4, 64843) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15984) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] ACT @ (4, 13825) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 387) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59447) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56210) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 49735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 47576) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 41101) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 37863) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32467) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 29230) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 18438) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 11962) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 8725) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 91) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60231) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 54835) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 48360) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49439) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 45122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42964) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39726) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 36489) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 30014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26776) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 27855) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25697) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23538) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24618) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 21380) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22459) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 19221) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20301) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 15984) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17063) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13825) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14905) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14905) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> @@ -19118,273 +18936,273 @@ Average Rate: 11 ns/request [ 2500 ps] ACT @ (4, 35114) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] ACT @ (4, 30797) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29718) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 23243) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28639) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> +[ 2500 ps] ACT @ (4, 25401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> +[ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59641) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58562) -> -[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57483) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 58561) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (4, 56403) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55324) -> -[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 55324) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53166) -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49928) -> [ 7500 ps] WR @ (3, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48849) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45611) -> -[ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44532) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 42374) -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> [ 7500 ps] WR @ (3, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5976) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38057) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> +[ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58562) -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 57483) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (4, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55324) -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> -[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34819) -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32661) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53166) -> +[ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 53165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51007) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49928) -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48849) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31582) -> [ 7500 ps] WR @ (7, 984) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30502) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29423) -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45611) -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 28344) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 28344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 27264) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26186) -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25106) -> +[ 2500 ps] ACT @ (7, 43452) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42374) -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40215) -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39136) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38057) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35898) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34819) -> +[ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32661) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31582) -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30502) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29423) -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28344) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 19710) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 27264) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26186) -> +[ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 26185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 16472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> +[ 2500 ps] ACT @ (7, 21868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20789) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 5680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> +[ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 2443) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 64741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 4601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 62583) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 2443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 60424) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 284) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56107) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 57187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 61503) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 60424) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 58266) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59345) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 57187) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> @@ -19486,6 +19304,253 @@ Average Rate: 11 ns/request [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 8622) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 9702) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 5385) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 6464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 4306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 65525) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (7, 63366) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 60129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 59050) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52574) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 51495) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49337) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 42862) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 40703) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 34228) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 30990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32070) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 28832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 23436) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 22357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20198) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 15882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 13723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 7248) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (7, 5089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 1852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 61992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60913) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 58754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 52279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 50121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (7, 43645) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 40408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 37170) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35012) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32853) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33933) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31774) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 29616) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28537) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24220) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 23141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> @@ -19504,254 +19569,10 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> -[ 2500 ps] ACT @ (3, 5385) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> +[ 2500 ps] ACT @ (3, 19903) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6464) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 65525) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 1068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 64446) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57970) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 59050) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 54733) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52574) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 37466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34228) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 35307) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32070) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 28832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 25594) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 23436) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22357) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 16961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 13723) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 10486) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7248) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 8327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 6169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 1852) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 65229) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 61992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60913) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 53358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52279) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 46883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 44725) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40408) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38249) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 36091) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 37170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32853) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33933) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31774) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29616) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 24220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 23141) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 19903) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> @@ -19782,846 +19603,809 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5873) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6953) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1773) -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> -[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> [ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] WR @ (7, 768) -> +[ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 43566) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59754) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 5000 ps] RD @ (0, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 5000 ps] RD @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32774) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 25220) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 5000 ps] RD @ (4, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> -[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 4715) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 63776) -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 51905) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 45429) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14428) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 44350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 43271) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12270) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> +[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 5000 ps] RD @ (0, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> -[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 26004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 24925) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 5000 ps] RD @ (4, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> -[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 41113) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 103) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34637) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32479) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 22766) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16291) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14133) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> [ 5000 ps] RD @ (4, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 47292) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 45134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 5000 ps] RD @ (0, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> -[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> -[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> +[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1966) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36500) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18154) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 5000 ps] RD @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> +[ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 49155) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43759) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 5000 ps] RD @ (0, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 5000 ps] RD @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 23255) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 10304) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4908) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3829) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63969) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 2750) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1671) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61811) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 5000 ps] RD @ (4, 696) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> -[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 51018) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 52098) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45622) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 49939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 48860) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 5000 ps] RD @ (0, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> -[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 30514) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 24038) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 5000 ps] RD @ (0, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18642) -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 12167) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 5692) -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 4613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 2454) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 5000 ps] RD @ (4, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> +[ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 296) -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62594) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> [ 5000 ps] RD @ (4, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 50723) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 5000 ps] RD @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> +[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 32377) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 25901) -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20505) -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 24822) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19426) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 22664) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 23743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 5000 ps] RD @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 12951) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 8634) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 7555) -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2159) -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 6476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 4317) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 5397) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> [ 5000 ps] RD @ (4, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> [ 5000 ps] RD @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61220) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60141) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> -[ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48269) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 52586) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48269) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47190) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 46111) -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> +[ 2500 ps] ACT @ (4, 47190) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43952) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45032) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43952) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45032) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42873) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40715) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41794) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38556) -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42873) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37477) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40715) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38556) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34240) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33160) -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32081) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37477) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 34240) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33160) -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32081) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31002) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28844) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 27764) -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31002) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27764) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28844) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -20681,430 +20465,340 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> -[ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 54449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 5000 ps] RD @ (4, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 40419) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54449) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 35023) -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47974) -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46895) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44736) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> [ 5000 ps] RD @ (4, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 36103) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33944) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32865) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29627) -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 33944) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31786) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32865) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26390) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27469) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 5000 ps] RD @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28548) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> -[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 14519) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 8043) -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> +[ 2500 ps] ACT @ (0, 9123) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> -[ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 61708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56312) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55233) -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 55233) -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49837) -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 51995) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 53075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46599) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49837) -> [ 5000 ps] RD @ (4, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40124) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> -[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40124) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 36886) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33649) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34728) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31490) -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 35807) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30411) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 33649) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34728) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28253) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29332) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31490) -> [ 5000 ps] RD @ (0, 408) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27174) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26094) -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30411) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28253) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29332) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22857) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23936) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27174) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26094) -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19619) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22857) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23936) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17461) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16382) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15302) -> +[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19619) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17461) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14223) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12065) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13144) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 16382) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15302) -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10986) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9906) -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14223) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8827) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12065) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6669) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 10986) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9906) -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 8827) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 6669) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 7748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5590) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4510) -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5590) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4510) -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2352) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3431) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2352) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3431) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1273) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64650) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1273) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64650) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63571) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62492) -> +[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61413) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59254) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60334) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 63571) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62492) -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58175) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57096) -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59254) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56017) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53858) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58175) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57096) -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52779) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51700) -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56017) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50621) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 53858) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48462) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49542) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52779) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51700) -> [ 5000 ps] RD @ (4, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47383) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46304) -> [ 5000 ps] RD @ (4, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50621) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48462) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49542) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45225) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43066) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44146) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47383) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46304) -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41987) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40908) -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45225) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39829) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43066) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37670) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38750) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41987) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40908) -> -[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39829) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37670) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38750) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 36591) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35512) -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34433) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36591) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35512) -> +[ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34433) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32274) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30116) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27957) -> [ 5000 ps] RD @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31195) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27957) -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 11769) -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6373) -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 10690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 8532) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 64355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58959) -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55721) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 5000 ps] RD @ (4, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 38454) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31979) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4215) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> +[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> @@ -21124,342 +20818,432 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> +[ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 13632) -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53563) -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50325) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> +[ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> +[ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 14712) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13632) -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8236) -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 12553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10395) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 11474) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4999) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8236) -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> [ 5000 ps] RD @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 60822) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61901) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57584) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55426) -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57584) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52188) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53268) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> [ 5000 ps] RD @ (4, 240) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53268) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46792) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47872) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46792) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> -[ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40317) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39238) -> +[ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42476) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38159) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36000) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37080) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 40317) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39238) -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34921) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33842) -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38159) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36000) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32763) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30604) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 33842) -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32763) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30604) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29525) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> [ 5000 ps] RD @ (4, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29525) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28446) -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26287) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27367) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26287) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27367) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20891) -> +[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19812) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17654) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 21971) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20891) -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16575) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15495) -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17654) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14416) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12258) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15495) -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10099) -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 14416) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12258) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 13337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6862) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10099) -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> [ 5000 ps] RD @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9020) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6862) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 387) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 387) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> -[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 60527) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59447) -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59447) -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58368) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56210) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54051) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> [ 5000 ps] RD @ (4, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47576) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47576) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42180) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37863) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 42180) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36784) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37863) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32467) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 35705) -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30309) -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 34626) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29230) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32467) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 33547) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27071) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> [ 5000 ps] RD @ (4, 152) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 22754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21675) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20596) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 18438) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18438) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 17358) -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11962) -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 16279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 14121) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8725) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> [ 5000 ps] RD @ (0, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 91) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> +[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 91) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60231) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 62390) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60231) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55914) -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> +[ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49439) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48360) -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49439) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48360) -> -[ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42964) -> +[ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39726) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 44043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42964) -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39726) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37568) -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 36489) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34330) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 35410) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> [ 5000 ps] RD @ (4, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38647) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36489) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> [ 2500 ps] PRE @ (0) -> @@ -21519,369 +21303,369 @@ Average Rate: 11 ns/request [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64253) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63173) -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59936) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61015) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59936) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57777) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58857) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56698) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54540) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55619) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52381) -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 50223) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58857) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57777) -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56698) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54540) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55619) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52381) -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50223) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49144) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46985) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 45906) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44827) -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46985) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41589) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42669) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45906) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 44827) -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40510) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39431) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 43748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38352) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41589) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 42669) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36193) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37273) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40510) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39431) -> [ 5000 ps] RD @ (4, 32) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34035) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38352) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37273) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31877) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34035) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> -[ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> +[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 24322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18926) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 17847) -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 5976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61799) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59641) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58562) -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57483) -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56403) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55324) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53166) -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53165) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 51007) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 52086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65036) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61799) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59641) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58562) -> [ 5000 ps] RD @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57483) -> [ 5000 ps] RD @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49928) -> [ 5000 ps] RD @ (3, 1008) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55324) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48849) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> -[ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 45611) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 44532) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42374) -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41294) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53166) -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51007) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49928) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48849) -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45611) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 40215) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39136) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44532) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38057) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43453) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> [ 5000 ps] RD @ (7, 992) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42374) -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35898) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41294) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34819) -> -[ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> +[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39136) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32661) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38057) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31582) -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30502) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29423) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36978) -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35898) -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34819) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28344) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32661) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 27264) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26186) -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 32660) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31582) -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 25106) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 26185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30502) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 31581) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29423) -> [ 5000 ps] RD @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28344) -> [ 5000 ps] RD @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 27264) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26186) -> +[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25106) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 20789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> +[ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 20789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 14314) -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 2443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 2443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 62583) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 60424) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 61503) -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 57187) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 56107) -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 60424) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 55028) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 58266) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 59345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 52870) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 53949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 57187) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 5000 ps] RD @ (3, 944) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50711) -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55028) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49632) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53949) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 47474) -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 48553) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50711) -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49632) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 47474) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 48553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> -[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 43157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 44236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 43157) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 44236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 39919) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40999) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38840) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 37761) -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 42078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 36682) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 39919) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 40999) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 35603) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38840) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37761) -> [ 5000 ps] RD @ (7, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33444) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32365) -> [ 5000 ps] RD @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 36682) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35603) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 31286) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29127) -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 30207) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33444) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32365) -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 28048) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 31286) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29127) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 30207) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 28048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> -[ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 22652) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21573) -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 20494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 18335) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 17256) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 16177) -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 22652) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21573) -> +[ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 20494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 18335) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 16177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 17256) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15098) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 12939) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -21940,41 +21724,21 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> -[ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (7, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 42862) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 42862) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> [ 5000 ps] RD @ (7, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 2500 ps] PRE @ (3) -> @@ -22149,8 +21913,8 @@ Average Rate: 11 ns/request -------------------------------- DONE TEST 2: RANDOM Number of Operations: 2304 -Time Started: 318220 ns -Time Done: 428430 ns +Time Started: 312330 ns +Time Done: 421600 ns Average Rate: 47 ns/request -------------------------------- @@ -22161,7 +21925,7 @@ Average Rate: 47 ns/request [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 428560000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 421730000.0 ps [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -22217,6 +21981,42 @@ Average Rate: 47 ns/request [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> ------- SUMMARY ------- @@ -22233,8 +22033,8 @@ TEST CALIBRATION [-]: read_test_address_counter = 200 [-]: correct_read_data = 349 [-]: wrong_read_data = 0 -$stop called at time : 429920 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 705 -run: Time (s): cpu = 00:00:24 ; elapsed = 00:41:54 . Memory (MB): peak = 2856.781 ; gain = 8.004 ; free physical = 7403 ; free virtual = 13032 +$stop called at time : 423990 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:22 ; elapsed = 00:35:59 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 693 ; free virtual = 10013 ## quit -INFO: xsimkernel Simulation Memory Usage: 236708 KB (Peak: 294504 KB), Simulation CPU Usage: 2508670 ms -INFO: [Common 17-206] Exiting xsim at Sat Jul 27 22:36:54 2024... +INFO: xsimkernel Simulation Memory Usage: 229388 KB (Peak: 287184 KB), Simulation CPU Usage: 2155120 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 20:59:43 2025... diff --git a/testbench/xsim/test_ecc_2.log b/testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_eight_lanes_bus_delay_1.log similarity index 62% rename from testbench/xsim/test_ecc_2.log rename to testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_eight_lanes_bus_delay_1.log index 4f93135..e81c3aa 100644 --- a/testbench/xsim/test_ecc_2.log +++ b/testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_eight_lanes_bus_delay_1.log @@ -1,83 +1,58 @@ ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_controller.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_controller -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_phy -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_top.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_top INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib INFO: [VRFC 10-311] analyzing module ddr3 -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ecc/ecc_dec.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ecc_dec -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ecc/ecc_enc.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ecc_enc -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib INFO: [VRFC 10-311] analyzing module ddr3_module -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module glbl +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim Vivado Simulator v2022.1 Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. -Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab -generic_top ECC_ENABLE=2 --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log Multi-threading is on. Using 14 slave threads. Starting static elaboration Pass Through NonSizing Optimizer -WARNING: [VRFC 10-3532] module 'glbl' does not have a parameter named 'ECC_ENABLE' to override [/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v:6] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:202] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:203] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:205] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:206] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:207] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:208] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:209] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:211] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:263] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:264] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:266] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:267] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:268] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:269] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:270] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:272] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:366] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:367] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:369] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:370] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:371] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:372] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:644] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:645] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:647] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:648] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:649] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:650] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:651] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:799] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:800] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:802] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:803] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:804] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:805] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1143] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1144] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1146] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1147] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1148] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1149] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1150] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1152] -WARNING: [VRFC 10-3091] actual bit length 1 differs from formal bit length 2 for port 'ck' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:248] -WARNING: [VRFC 10-3091] actual bit length 1 differs from formal bit length 2 for port 'ck_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:249] -WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:259] -WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:246] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:264] +WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:251] Completed static elaboration Starting simulation data flow analysis Completed simulation data flow analysis Time Resolution for simulation is 1ps -Compiling module xil_defaultlib.ecc_enc(K=502,P0_LSB=0) -Compiling module xil_defaultlib.ecc_dec(K=502,P0_LSB=0) Compiling module xil_defaultlib.ddr3_controller(ROW_BITS=16,LANE... Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... @@ -93,12 +68,17 @@ Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... Compiling module unisims_ver.IDELAYCTRL_default -Compiling module unisims_ver.DCIRESET Compiling module xil_defaultlib.ddr3_phy(ROW_BITS=16,ODELAY_SUPP... Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=1... Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=50) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=100) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=150) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=200) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=250) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=300) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=350) Compiling module xil_defaultlib.ddr3_module_default Compiling module xil_defaultlib.ddr3_dimm_micron_sim Compiling module xil_defaultlib.glbl @@ -138,9 +118,9 @@ ODELAY_SUPPORTED = 1 SECOND_WISHBONE = 0 WB2_ADDR_BITS = 7 WB2_DATA_BITS = 32 -ECC_ENABLE = 2 -ECC_INFORMATION_BITS = 502 -WB_ERROR = 0 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 57 +WB_ERROR = 1 CONTROLLER LOCALPARAMS: ----------------------------- @@ -167,6 +147,7 @@ PRECHARGE_TO_ACTIVATE_DELAY = 1 ACTIVATE_TO_WRITE_DELAY = 0 ACTIVATE_TO_READ_DELAY = 0 ACTIVATE_TO_PRECHARGE_DELAY = 3 +ACTIVATE_TO_ACTIVATE_DELAY = 0 READ_TO_WRITE_DELAY = 1 READ_TO_READ_DELAY = 0 READ_TO_PRECHARGE_DELAY = 1 @@ -176,6 +157,53 @@ WRITE_TO_PRECHARGE_DELAY = 4 STAGE2_DATA_DEPTH = 2 READ_ACK_PIPE_WIDTH = 6 + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. @@ -184,9 +212,15 @@ ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no + ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -[x ps] MRS -> Timing Violation Error : The low pulse of RST signal at time 20.000 ns in DCIRESET has to be greater than 100 ns -Timing Violation Error : The high pulse of RST signal at time 90.000 ns in DCIRESET has to be greater than 100 ns -[110724 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [110724 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -202,14 +236,22 @@ Timing Violation Error : The high pulse of RST signal at time 90.000 ns in DCIRE [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 7500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U1R1.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R1.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R1.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R1.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R1.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R1.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R1.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R1.reset at time 510200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 510250.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 510300.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 510350.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 510400.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 510450.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 510500.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 510550.0 ps WARNING: 200 us is required before RST_N goes inactive. [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -251,15 +293,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 510100.0 ps WARNING: 200 us [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1523924.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1523974.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1524024.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1524074.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1524124.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1524174.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1524224.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1524274.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -274,14 +316,14 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1521324.0 ps WARNING: 500 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 2500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1893924.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1893974.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1894024.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1894074.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1894124.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1894174.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1894224.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1894274.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> @@ -655,11 +697,7 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -667,16 +705,13 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -690,33 +725,13 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -730,12 +745,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -750,12 +765,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -770,12 +785,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -790,12 +805,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -810,21 +825,19 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -832,26 +845,19 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -859,19 +865,19 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -996,33 +1002,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -1036,6 +1020,9 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -1048,7 +1035,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -1523,32 +1509,9 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -1559,8 +1522,8 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -1578,108 +1541,101 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -1692,6 +1648,7 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -1702,27 +1659,25 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -1730,7 +1685,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -2018,26 +1972,19 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2053,11 +2000,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2073,11 +2020,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2093,11 +2040,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2113,11 +2060,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2133,11 +2080,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2153,11 +2100,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2173,11 +2120,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2193,27 +2140,27 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2223,18 +2170,29 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -2340,26 +2298,29 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2374,6 +2335,7 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -2641,27 +2603,20 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -2669,18 +2624,16 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2691,15 +2644,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -2726,12 +2679,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2746,12 +2699,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2766,32 +2719,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2806,32 +2739,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -2846,47 +2759,33 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -2904,37 +2803,28 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3066,22 +2956,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3342,38 +3216,40 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -3388,11 +3264,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3400,15 +3276,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3420,15 +3296,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3440,15 +3316,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3460,15 +3336,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3480,15 +3356,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3500,15 +3376,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3520,15 +3396,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3540,15 +3416,15 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3560,27 +3436,29 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -3666,24 +3544,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3692,17 +3552,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -3714,29 +3563,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -3985,38 +3811,40 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4031,11 +3859,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -4043,38 +3871,40 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4311,132 +4141,24 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4686,24 +4408,13 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -4717,13 +4428,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -4732,10 +4436,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4743,13 +4443,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -4771,11 +4464,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4791,11 +4484,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4811,11 +4504,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4831,11 +4524,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4851,11 +4544,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4871,11 +4564,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4891,11 +4584,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4911,11 +4604,11 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4930,15 +4623,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4946,19 +4636,19 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -4966,19 +4656,19 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5047,24 +4737,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5073,10 +4745,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5084,24 +4752,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5110,38 +4760,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5367,38 +4985,40 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5413,10 +5033,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5425,13 +5041,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5452,12 +5061,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5472,12 +5081,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5492,12 +5101,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5512,12 +5121,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5532,12 +5141,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5552,12 +5161,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5572,12 +5181,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5592,12 +5201,12 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5611,56 +5220,53 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5710,24 +5316,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5736,10 +5324,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -5747,36 +5331,6 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -5789,3335 +5343,5038 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Lo [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124761424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124761474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124761524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124761574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124771424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124771474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124771524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124771574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124781424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124781474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124781524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124781574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124791424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124791474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124791524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124791574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124801424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124801474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124801524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124801574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124811424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124811474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124811524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124811574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124821424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124821474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124821524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124821574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124831424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124831474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124831524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124831574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124841424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124841474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124841524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124841574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124851424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124851474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124851524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124851574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124861424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124861474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124861524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124861574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124871424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124871474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124871524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124871574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124881424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124881474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124881524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124881574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124891424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124891474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124891524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124891574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124901424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124901474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124901524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124901574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124911424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124911474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124911524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124911574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 124921424.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124921474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124921524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124921574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124971474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 124971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124971524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124971574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124981474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 124981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124981524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124981574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 124991474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 124991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 124991524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 124991574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125001474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125001524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125001574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125011474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125011524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125011574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125021474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125021524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125021574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125031474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125031524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125031574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125041474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125041524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125041574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125051474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125051524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125051574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125061474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125061524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125061574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125071474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125071524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125071574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125081474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125081524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125081574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125091474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125091524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125091574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125101474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125101524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125101574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125111474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125111524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125111574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125121474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125121524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125121574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125131474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125131524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125131574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125191474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125191524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125191574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125201474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125201524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125201574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125211474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125211524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125211574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125221474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125221524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125221574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125231474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125231524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125231574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125241474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125241524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125241574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125251474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125251524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125251574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125261474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125261524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125261574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125271474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125271524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125271574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125281474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125281524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125281574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125291474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125291524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125291574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125301474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125301524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125301574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125311474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125311524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125311574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125321474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125321524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125321574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125331474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125331524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125331574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125341474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125341524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125341574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125351474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125351524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125351574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125411474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125411524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125411574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125421474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125421524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125421574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125431474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125431524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125431574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125441474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125441524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125441574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125451474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125451524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125451574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125461474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125461524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125461574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125471474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125471524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125471574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125481474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125481524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125481574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125491474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125491524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125491574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125501474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125501524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125501574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125511474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125511524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125511574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125521474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125521524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125521574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125531474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125531524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125531574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125541474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125541524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125541574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125551474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125551524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125551574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125561474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125561524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125561574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 125571474.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125571524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125571574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125621524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125621574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125631524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125631574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125641524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125641574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125651524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125651574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125661524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125661574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125671524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125671574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125681524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125681574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125691524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125691574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125701524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125701574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125711524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125711574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125721524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125721574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125731524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125731574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125741524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125741574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125751524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125751574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125761524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125761574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125771524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125771574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125781524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125781574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125841524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125841574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125851524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125851574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125861524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125861574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125871524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125871574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125881524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125881574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125891524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125891574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125901524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125901574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125911524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125911574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125921524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125921574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125931524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125931574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125941524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125941574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125951524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125951574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125961524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125961574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125971524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125971574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125981524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125981574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 125991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 125991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 125991524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 125991574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126001524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126001574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126061524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126061574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126071524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126071574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126081524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126081574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126091524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126091574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126101524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126101574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126111524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126111574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126121524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126121574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126131524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126131574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126141524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126141574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126151524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126151574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126161524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126161574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126171524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126171574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126181524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126181574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126191524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126191574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126201524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126201574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126211524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126211574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126221524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126221574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126271524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126271574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126281524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126281574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126291524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126291574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126301524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126301574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126311524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126311574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126321524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126321574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126331524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126331574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126341524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126341574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126351524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126351574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126361524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126361574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126371524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126371574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126381524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126381574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126391524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126391574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126401524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126401574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126411524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126411574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126421524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126421574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 126431524.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126431574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126481574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126491574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126501574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126511574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126521574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126531574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126541574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126551574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126561574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126571574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126581574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126591574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126601574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126611574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126621574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126631574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126641574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126701574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126711574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126721574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126731574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126731580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126741574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126741580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126751574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126751580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126761574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126771574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126781574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126791574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126801502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126801502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126801574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126801580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126811502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126811502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126811574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126811580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126821502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126821502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126821574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126821580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126831574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126841574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126851574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126861574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126921574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126931574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126941574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126951574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126951580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126961574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126961580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126971574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126981574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 126991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 126991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 126991574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 126991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127001574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127011574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127021574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127021580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127031574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127031580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127041574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127051574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127061574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127071574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127081574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127131574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127141574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127151574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127161574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127161580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127171574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127171580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127181574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127181580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127191574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127201574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127211574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127221574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127231574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127231580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127241574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127241580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127251574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127261574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127271574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127281574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 127291574.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127651580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127651580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127661580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127661580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127671580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127671580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127681580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127681580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127801502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127801502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127801580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127801580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127811502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127811502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127811580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127811580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127821502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127821502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127821580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127821580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127881580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127881580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127891580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127891580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127901580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127901580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 127991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 127991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 127991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 127991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 127991624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128001624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128011624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128021580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128021580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128021624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128031580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128031580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128031624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128041624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128051624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128061624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128071624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128081624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128091580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128091580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128091624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128101580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128101580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128101624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128111580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128111580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128111624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128121580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128121580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128121624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128131624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128141624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128151624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128201624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128211624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128221624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128231580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128231580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128231624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128241580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128241580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128241624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128251624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128261624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128271624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128281624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128291624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128301580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128301580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128301624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128311580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128311580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128311624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128321580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128321580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128321624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128331580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128331580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128331624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128341624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128351624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 128361624.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128411658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128421658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128431658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128441658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128451658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128461658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128471658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128481658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128491658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128501658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128511658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128521658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128531658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128541658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128551658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128561658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128571658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128631658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128641658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128651580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128651580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128651658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128661580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128661580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128661658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128671580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128671580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128671658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128681580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128681580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128681658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128691658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128701658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128711658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128721658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128731580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128731580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128731658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128741580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128741580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128741658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128751580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128751580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128751658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128761658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128771658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128781658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128791658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128851658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128861658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128871658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128881580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128881580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128881658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128891580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128891580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128891658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128901580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128901580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128901658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128911658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128921658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128931658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128941658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128951580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128951580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128951658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128961580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128961580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128961658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128971658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128981658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 128991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 128991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 128991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 128991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 128991658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129001658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129011658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129061658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129071658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129081658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129091580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129091580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129091658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129101580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129101580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129101658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129111580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129111580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129111658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129121580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129121580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129121658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129131658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129141658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129151658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129161580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129161580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129161658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129171580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129171580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129171658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129181580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129181580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129181658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129191658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129201658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129211658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129221658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129271658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129271674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129281658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129281674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129291658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129291674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129301580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129301580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129301658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129301674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129311580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129311580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129311658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129311674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129321580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129321580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129321658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129321674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129331580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129331580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129331658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129331674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129341658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129341674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129351658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129351674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129361658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129361674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129371658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129371674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129381658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129381674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129391658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129391674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129401658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129401674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129411658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129411674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129421658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129421674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129431658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129431674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129481658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129481674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129491658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129491674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129501658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129501674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129511658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129511674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129521658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129521674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129531658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129531674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129541658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129541674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129551658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129551674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129561658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129561674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129571658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129571674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129581658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129581674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129591658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129591674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129601658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129601674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129611658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129611674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129621658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129621674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129631658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129631674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129641658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 129641674.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129691658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129691736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129701658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129701736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129711658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129711736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129721658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129721736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129731580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129731580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129731658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129731736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129741580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129741580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129741658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129741736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129751580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129751580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129751658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129751736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129761658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129761736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129771658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129771736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129781658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129781736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129791658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129791736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129801502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129801502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129801580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129801580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129801658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129801736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129811502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129811502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129811580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129811580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129811658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129811736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129821502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129821502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129821580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129821580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129821658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129821736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129831658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129831736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129841658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129841736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129851658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129851736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129911658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129911736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129921658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129921736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129931658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129931736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129941658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129941736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129951580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129951580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129951658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129951736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129961580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129961580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129961658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129961736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129971658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129971736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129981658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129981736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 129991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 129991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 129991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 129991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 129991658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 129991736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130001658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130001736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130011658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130011736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130021580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130021580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130021658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130021736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130031580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130031580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130031658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130031736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130041658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130041736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130051658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130051736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130061658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130061736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130071658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130071736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130131658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130131736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130141658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130141736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130151658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130151736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130161580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130161580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130161658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130161736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130171580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130171580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130171658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130171736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130181580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130181580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130181658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130181736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130191658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130191736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130201658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130201736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130211658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130211736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130221658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130221736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130231580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130231580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130231658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130231736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130241580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130241580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130241658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130241736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130251658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130251736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130261658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130261736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130271658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130271736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130281658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130281736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130291658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130291736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130341658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130341736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130351658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130351736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130361658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130361736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130371658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130371736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130381658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130381736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130391658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130391736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130401658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130401736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130411658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130411736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130421658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130421736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130431658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130431736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130441658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130441736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130451658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130451736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130461658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130461736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130471658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130471736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130481658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130481736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130491658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130491736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130501658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130501736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130551658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130551724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130551736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130561658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130561724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130561736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130571658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130571724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130571736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130581658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130581724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130581736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130591658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130591724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130591736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130601658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130601724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130601736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130611658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130611724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130611736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130621658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130621724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130621736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130631658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130631724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130631736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130641658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130641724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130641736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130651580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130651580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130651658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130651724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130651736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130661580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130661580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130661658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130661724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130661736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130671580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130671580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130671658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130671724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130671736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130681580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130681580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130681658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130681724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130681736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130691658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130691724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130691736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130701658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130701724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130701736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130711658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130711724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130711736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130761658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130761724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130761736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130771658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130771724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130771736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130781658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130781724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130781736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130791502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130791658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130791724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130791736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130801502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130801502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130801580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130801580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130801658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130801724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130801736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130811502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130811502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130811580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130811580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130811658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130811724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130811736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130821502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130821502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130821580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130821580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130821658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130821724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130821736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130831658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130831724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130831736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130841658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130841724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130841736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130851658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130851724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130851736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130861658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130861724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130861736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130871658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130871724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130871736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130881580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130881580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130881658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130881724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130881736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130891580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130891580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130891658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130891724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130891736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130901580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130901580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130901658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130901724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130901736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130911658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130911724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130911736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130921658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 130921724.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130921736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130971658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130971736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 130971736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130981658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130981736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 130981736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 130991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 130991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 130991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 130991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 130991658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 130991736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 130991736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131001502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131001580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131001658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131001736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131001736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131011502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131011580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131011658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131011736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131011736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131021502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131021580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131021580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131021658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131021736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131021736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131031580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131031580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131031658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131031736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131031736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131041658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131041736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131041736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131051658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131051736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131051736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131061658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131061736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131061736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131071658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131071736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131071736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131081658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131081736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131081736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131091580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131091580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131091658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131091736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131091736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131101580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131101580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131101658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131101736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131101736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131111580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131111580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131111658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131111736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131111736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131121580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131121580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131121658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131121736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131121736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131131658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131131736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131131736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131191658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131191736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131191736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131201658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131201736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131201736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131211502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131211658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131211736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131211736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131221502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131221658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131221736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131221736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131231502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131231580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131231580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131231658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131231736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131231736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131241502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131241580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131241580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131241658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131241736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131241736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131251658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131251736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131251736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131261658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131261736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131261736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131271658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131271736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131271736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131281658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131281736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131281736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131291658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131291736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131291736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131301580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131301580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131301658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131301736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131301736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131311580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131311580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131311658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131311736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131311736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131321580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131321580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131321658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131321736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131321736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131331580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131331580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131331658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131331736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131331736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131341658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131341736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131341736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131351658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131351736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131351736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131411658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131411736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131411736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131421502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131421658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131421736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131421736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131431502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131431658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131431736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131431736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131441502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131441658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131441736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131441736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131451502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131451658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131451736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131451736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131461658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131461736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131461736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131471658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131471736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131471736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131481658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131481736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131481736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131491658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131491736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131491736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131501658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131501736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131501736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131511658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131511736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131511736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131521658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131521736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131521736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131531658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131531736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131531736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131541658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131541736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131541736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131551658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131551736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131551736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131561658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131561736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131561736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131571658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131571736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131571736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131621658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131621736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131621736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131631502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131631580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131631658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131631736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131631736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131641502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131641580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131641658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131641736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131641736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131651502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131651580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131651580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131651658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131651736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131651736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131661502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131661580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131661580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131661658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131661736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131661736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131671502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131671580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131671580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131671658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131671736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131671736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131681502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131681580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131681580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131681658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131681736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131681736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131691502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131691580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131691658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131691736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131691736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131701502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131701580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131701658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131701736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131701736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131711502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131711580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131711658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131711736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131711736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131721502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131721580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131721658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131721736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131721736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131731502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131731580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131731580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131731658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131731736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131731736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131741502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131741580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131741580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131741658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131741736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131741736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131751502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131751580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131751580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131751658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131751736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131751736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131761502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131761580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131761658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131761736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131761736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131771502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131771580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131771658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131771736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131771736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131781502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131781580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131781658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131781736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131781736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131831502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131831658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131831736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131831736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131841502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131841658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131841736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131841736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131851502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131851658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131851736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131851736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131861502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131861658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131861736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131861736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131871502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131871658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131871736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131871736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131881502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131881580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131881580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131881658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131881736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131881736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131891502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131891580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131891580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131891658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131891736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131891736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131901502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131901580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131901580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131901658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131901736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131901736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131911502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131911658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131911736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131911736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131921502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131921658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131921736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131921736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131931502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131931658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131931736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131931736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131941502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131941658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131941736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131941736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131951502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131951580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131951580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131951658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131951736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131951736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131961502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131961580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131961580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131961658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131961736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131961736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131971502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131971658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131971736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131971736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131981502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131981658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131981736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131981736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 131991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 131991502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 131991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 131991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 131991658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 131991736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 131991736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132041580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132041658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132041736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132041736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132041774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132051580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132051658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132051736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132051736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132051774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132061580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132061658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132061736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132061736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132061774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132071580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132071658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132071736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132071736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132071774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132081580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132081658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132081736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132081736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132081774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132091580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132091580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132091658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132091736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132091736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132091774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132101580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132101580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132101658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132101736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132101736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132101774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132111580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132111580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132111658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132111736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132111736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132111774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132121502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132121580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132121580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132121658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132121736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132121736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132121774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132131502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132131580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132131658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132131736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132131736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132131774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132141502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132141658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132141736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132141736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132141774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132151502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132151658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132151736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132151736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132151774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132161502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132161580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132161580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132161658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132161736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132161736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132161774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132171502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132171580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132171580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132171658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132171736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132171736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132171774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132181502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132181580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132181580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132181658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132181736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132181736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132181774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132191502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132191658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132191736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132191736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132191774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132201502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132201658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132201736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132201736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132201774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132251502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132251580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132251658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132251736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132251736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132251774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132261580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132261658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132261736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132261736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132261774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132271580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132271658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132271736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132271736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132271774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132281580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132281658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132281736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132281736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132281774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132291580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132291658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132291736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132291736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132291774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132301580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132301580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132301658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132301736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132301736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132301774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132311580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132311580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132311658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132311736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132311736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132311774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132321580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132321580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132321658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132321736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132321736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132321774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132331580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132331580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132331658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132331736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132331736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132331774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132341580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132341658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132341736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132341736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132341774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132351502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132351580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132351658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132351736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132351736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132351774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132361502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132361580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132361658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132361736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132361736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132361774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132371502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132371658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132371736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132371736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132371774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132381502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132381658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132381736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132381736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132381774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132391502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132391658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132391736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132391736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132391774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132401502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132401658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132401736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132401736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132401774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132411502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132411658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132411736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132411736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 132411774.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132461502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132461580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132461658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132461736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132461736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132461814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132471502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132471580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132471658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132471736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132471736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132471814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132481502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132481580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132481658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132481736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132481736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132481814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132491502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132491580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132491658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132491736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132491736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132491814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132501502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132501580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132501658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132501736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132501736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132511502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132511580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132511658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132511736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132511736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132511814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132521502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132521580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132521658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132521736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132521736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132521814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132531502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132531580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132531658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132531736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132531736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132531814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132541502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132541580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132541658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132541736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132541736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132551502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132551580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132551658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132551736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132551736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132551814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132561502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132561580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132561658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132561736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132561736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132561814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132571502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132571580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132571658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132571736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132571736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132571814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132581502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132581580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132581658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132581736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132581736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132581814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132591502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132591580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132591658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132591736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132591736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132591814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132601502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132601580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132601658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132601736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132601736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132611502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132611580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132611658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132611736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132611736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132611814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 132621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 132621502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 132621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 132621580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 132621658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 132621736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 132621736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 132621814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> @@ -9135,11 +10392,325 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -9147,47 +10718,1112 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> @@ -9428,15 +12064,32 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 153) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -9481,30 +12134,13 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 168) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -9803,66 +12439,10 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 173) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 178) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 183) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 188) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -9883,6 +12463,62 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 172) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> @@ -10165,61 +12801,10 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -10239,6 +12824,57 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -10513,56 +13149,8 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 0) -> [ 7500 ps] WR @ (1, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> +[ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> @@ -10582,1266 +13170,7 @@ ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] ACT @ (3, 0) -> -[ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> -[ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 984) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 0) -> [ 7500 ps] WR @ (6, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] ACT @ (0, 1) -> -[ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> -[ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> -[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> -[ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -FAILED: Address = 1151, expected data = 00209c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 197380000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> --------------------------------- -DONE TEST 1: FIRST ROW -Number of Operations: 2304 -Time Started: 171750 ns -Time Done: 198290 ns -Average Rate: 11 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> @@ -12133,28 +13462,8 @@ Average Rate: 11 ns/request [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (7, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> @@ -12173,8 +13482,28 @@ Average Rate: 11 ns/request [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> @@ -12245,7 +13574,373 @@ Average Rate: 11 ns/request [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> +[ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -12260,6 +13955,446 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 0) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> +[ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 230340 ns +Time Done: 254910 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 254990000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -12274,6 +14409,326 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 0) -> +[ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> +[ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 0) -> +[ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (7, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -12284,8 +14739,706 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> +[ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> +[ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> @@ -12358,695 +15511,130 @@ Average Rate: 11 ns/request [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> -[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> -[ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -FAILED: Address = 1151, expected data = 00209c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 223940000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> - +[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> +[ 2500 ps] NOP -> -------------------------------- DONE TEST 1: MIDDLE ROW Number of Operations: 2304 -Time Started: 198290 ns -Time Done: 224850 ns -Average Rate: 11 ns/request +Time Started: 254910 ns +Time Done: 279500 ns +Average Rate: 10 ns/request -------------------------------- +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 279580000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> +[ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 32767) -> [ 7500 ps] WR @ (0, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> +[ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (1, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -13059,109 +15647,9 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 32767) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> @@ -13371,28 +15859,8 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> @@ -13493,7 +15961,27 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> @@ -13543,723 +16031,406 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32767) -> +[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32767) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32767) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> +[ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32767) -> [ 5000 ps] RD @ (0, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32767) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32767) -> -[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 5000 ps] RD @ (4, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32767) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32768) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -14273,230 +16444,465 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32768) -> -[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 33554559, expected data = 002d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 250760000.0 ps -[ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 5000 ps] RD @ (5, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32767) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (1, 32768) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> -------------------------------- DONE TEST 1: LAST ROW Number of Operations: 2304 -Time Started: 224850 ns -Time Done: 251670 ns -Average Rate: 11 ns/request +Time Started: 279500 ns +Time Done: 304100 ns +Average Rate: 10 ns/request -------------------------------- -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 304180000.0 ps +[ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 694) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] ACT @ (0, 56517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 32774) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 14428) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 11190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> +[ 2500 ps] ACT @ (4, 27378) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12270) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> @@ -14634,237 +17040,234 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3341) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> -[ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3341) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 60243) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 52688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58084) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> +[ 2500 ps] ACT @ (0, 54847) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> +[ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31104) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> +[ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 3045) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1966) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> +[ 2500 ps] ACT @ (4, 64264) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> +[ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 38363) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] ACT @ (0, 35126) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -15006,227 +17409,227 @@ Average Rate: 11 ns/request [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> +[ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 14326) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 12167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17563) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 5692) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11088) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 2454) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] ACT @ (4, 7850) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> +[ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 52882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 50723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 49644) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 42089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] ACT @ (0, 44248) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> +[ 2500 ps] ACT @ (4, 35614) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 23743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 15109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20505) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 12951) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17268) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9713) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> @@ -15369,231 +17772,234 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 64162) -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 62004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64162) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 65241) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 53370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58766) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 50132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> +[ 2500 ps] ACT @ (4, 55528) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33944) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32865) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 30707) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28548) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 24231) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 20994) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 12360) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46895) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33944) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32865) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 29627) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26390) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17756) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11281) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9123) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 1568) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6964) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 60629) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61708) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 489) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57391) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> +[ 2500 ps] ACT @ (4, 62787) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55233) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61708) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49837) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55233) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> +[ 2500 ps] ACT @ (0, 54154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49837) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 42283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45520) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33649) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34728) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 39045) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 31490) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36886) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34728) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33649) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] ACT @ (4, 31490) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> @@ -15729,601 +18135,598 @@ Average Rate: 11 ns/request [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34433) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] ACT @ (4, 27957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27957) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> +[ 2500 ps] ACT @ (4, 26878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20403) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 6373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11769) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] ACT @ (0, 8532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> +[ 2500 ps] ACT @ (0, 63276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 49246) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54642) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 42771) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48167) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39533) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> +[ 2500 ps] ACT @ (4, 44929) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36296) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 22266) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27662) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 13632) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19028) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10395) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] ACT @ (0, 15791) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8236) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13632) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8236) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 1761) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> +[ 2500 ps] ACT @ (4, 7157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 56505) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] ACT @ (4, 62980) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53268) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 50030) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60822) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 46792) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47872) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> +[ 2500 ps] ACT @ (4, 57584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53268) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39238) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40317) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38159) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36000) -> +[ 2500 ps] ACT @ (0, 48951) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46792) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37080) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47872) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33842) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32763) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30604) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29525) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26287) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 27367) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39238) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40317) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38159) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36000) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 20891) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 33842) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32763) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30604) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31684) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29525) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 17654) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15495) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26287) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27367) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14416) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12258) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10099) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20891) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6862) -> +[ 2500 ps] ACT @ (4, 19812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17654) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15495) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14416) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12258) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 2545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 387) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10099) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11179) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9020) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6862) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 4703) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2545) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 387) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] ACT @ (4, 59447) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59447) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 50814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> +[ 2500 ps] ACT @ (0, 56210) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47576) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 44339) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 42180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47576) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37863) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 35705) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41101) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32467) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> +[ 2500 ps] ACT @ (4, 37863) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32467) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20596) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29230) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18438) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 13042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18438) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 6566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11962) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] ACT @ (0, 8725) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 91) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60231) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> +[ 2500 ps] ACT @ (4, 91) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60231) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48360) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 49439) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54835) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 42964) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48360) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49439) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39726) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> +[ 2500 ps] ACT @ (4, 45122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42964) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36489) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39726) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31093) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> +[ 2500 ps] ACT @ (0, 36489) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] ACT @ (4, 28934) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> @@ -16466,233 +18869,233 @@ Average Rate: 11 ns/request [ 2500 ps] ACT @ (4, 29718) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] ACT @ (4, 25401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 26481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 24322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 17847) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23243) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 15688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 3817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> +[ 2500 ps] ACT @ (4, 9213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61799) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59641) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58562) -> +[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57483) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 58561) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (4, 56403) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55324) -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 55324) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59640) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58562) -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 54244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53166) -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57483) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (4, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55324) -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49928) -> [ 7500 ps] WR @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48849) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45611) -> +[ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44532) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54244) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 53166) -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49928) -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48849) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42374) -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> [ 7500 ps] WR @ (3, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38057) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> -[ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45611) -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34819) -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32661) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42374) -> [ 7500 ps] WR @ (7, 1000) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31582) -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30502) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29423) -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38057) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28344) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 28344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35898) -> +[ 2500 ps] ACT @ (7, 27264) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26186) -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34819) -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32661) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31582) -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30502) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29423) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28344) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 29423) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 27264) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 26186) -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 22948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 20789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 14314) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 19710) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 12155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 16472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 8918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] ACT @ (3, 3522) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -16834,227 +19237,227 @@ Average Rate: 11 ns/request [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> -[ 2500 ps] ACT @ (3, 65525) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1068) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 65525) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 61208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 1068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 59050) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 64446) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52574) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 57970) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 59050) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 49337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> +[ 2500 ps] ACT @ (3, 54733) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52574) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 38545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34228) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32070) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 37466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 28832) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 29911) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34228) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 35307) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32070) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 23436) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 28832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 20198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] ACT @ (7, 25594) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 23436) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16961) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 13723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 11565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> +[ 2500 ps] ACT @ (3, 16961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7248) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 13723) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6169) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 1852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 2931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 10486) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7248) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 8327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 6169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 61992) -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 1852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59833) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60913) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 65229) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 56596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> +[ 2500 ps] ACT @ (3, 61992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60913) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53358) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 47962) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> +[ 2500 ps] ACT @ (7, 53358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52279) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 41487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 46883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 39329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 37170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 44725) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40408) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (7, 38249) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 37170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35012) -> @@ -17119,920 +19522,749 @@ Average Rate: 11 ns/request [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5873) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] WR @ (7, 768) -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 5000 ps] RD @ (4, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 694) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 54358) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 5000 ps] RD @ (0, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38170) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> -[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 9032) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19824) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 5000 ps] RD @ (4, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64855) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> +[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 46509) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 56221) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40033) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 54063) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37875) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 5000 ps] RD @ (0, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 5000 ps] RD @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> -[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 35717) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27083) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29241) -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> -[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 17370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10895) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21687) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 8737) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19529) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 5000 ps] RD @ (4, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 5000 ps] RD @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60243) -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> -[ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 5000 ps] RD @ (0, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 37580) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48372) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 31104) -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41896) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38659) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> +[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24629) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12758) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21392) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 5000 ps] RD @ (4, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> -[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 57789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> -[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32967) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1966) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49155) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 5000 ps] RD @ (0, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 5000 ps] RD @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 20017) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> -[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 65048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58573) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22175) -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> +[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 10304) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3829) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2750) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1671) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 5000 ps] RD @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52098) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 5000 ps] RD @ (4, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48860) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> +[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 46702) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30514) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40226) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24038) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 5000 ps] RD @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> -[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> -[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 1375) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 12167) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 60436) -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5692) -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57198) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2454) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 5000 ps] RD @ (4, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 5000 ps] RD @ (4, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 42089) -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> -[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15109) -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> -[ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> +[ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50723) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> +[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 32377) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 62299) -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25901) -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24822) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22664) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 5000 ps] RD @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 12951) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7555) -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 61220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 60141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4317) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5397) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> [ 5000 ps] RD @ (4, 568) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> [ 5000 ps] RD @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> +[ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48269) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47190) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> -[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43952) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 45032) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 42873) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40715) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38556) -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37477) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34240) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33160) -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32081) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31002) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28844) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27764) -> -[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26685) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24527) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25606) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 23448) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22368) -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21289) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19131) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20210) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18052) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 16972) -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15893) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 13735) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 14814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12656) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11576) -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9418) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10497) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8339) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6180) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7260) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 5101) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 784) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 64162) -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 63083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60924) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 62004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> [ 5000 ps] RD @ (4, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> @@ -18052,7 +20284,125 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 5000 ps] RD @ (4, 488) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48269) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47190) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> [ 5000 ps] RD @ (4, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43952) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45032) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42873) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40715) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41794) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 39636) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38556) -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37477) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34240) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33160) -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32081) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29923) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31002) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28844) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27764) -> [ 5000 ps] RD @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26685) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24527) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25606) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23448) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22368) -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21289) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19131) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20210) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18052) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16972) -> +[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15893) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13735) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14814) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 12656) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11576) -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9418) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10497) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8339) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6180) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7260) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 5101) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 784) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64162) -> +[ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62004) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53370) -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> [ 7500 ps] NOP -> @@ -18329,128 +20679,12 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 11769) -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 10690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 8532) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 64355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58959) -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55721) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 5000 ps] RD @ (4, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 38454) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31979) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> @@ -18470,9 +20704,127 @@ Average Rate: 11 ns/request [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13928) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> +[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 65434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61117) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> [ 5000 ps] RD @ (4, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> +[ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 43850) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37375) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36296) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34137) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> [ 5000 ps] RD @ (4, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 25504) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19028) -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15791) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> @@ -18746,14 +21098,32 @@ Average Rate: 11 ns/request [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> +[ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> +[ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> @@ -18868,630 +21238,615 @@ Average Rate: 11 ns/request [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54540) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55619) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 52381) -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50223) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46985) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45906) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44827) -> -[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43748) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41589) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42669) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 40510) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39431) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52381) -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 50223) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38352) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37273) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46985) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 34035) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45906) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44827) -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32956) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30797) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41589) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42669) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> [ 5000 ps] RD @ (4, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40510) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39431) -> [ 5000 ps] RD @ (4, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38352) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37273) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34035) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> -[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> +[ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 24322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 16768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12451) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 13530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17847) -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61799) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59641) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58562) -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57483) -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56403) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55324) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54244) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53166) -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> +[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 5976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61799) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59641) -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58562) -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51007) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49928) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48849) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 49928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> [ 5000 ps] RD @ (7, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45611) -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44532) -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 42374) -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41294) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39136) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38057) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57483) -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56403) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55324) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 54244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53166) -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (7, 53165) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 35898) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51007) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 52086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34819) -> [ 5000 ps] RD @ (3, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> [ 5000 ps] RD @ (3, 992) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49928) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32661) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48849) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31582) -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30502) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29423) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> +[ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45611) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28344) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 27264) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26186) -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25106) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 20789) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> -[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 13235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 8918) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 9997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 5000 ps] RD @ (3, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 2443) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44532) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42374) -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41294) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 40215) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39136) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38057) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35898) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34819) -> +[ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> -[ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 60424) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59345) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 57187) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55028) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 50711) -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 49632) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 47474) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 48553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> [ 5000 ps] RD @ (3, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 43157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 44236) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42078) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 39919) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40999) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38840) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37761) -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 36682) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35603) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33444) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32365) -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 31286) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 29127) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 30207) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 28048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> [ 5000 ps] RD @ (7, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> +[ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32661) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31582) -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30502) -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29423) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 22652) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21573) -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 20494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 18335) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 17256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16177) -> -[ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28344) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (7, 27264) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26186) -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25106) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 26185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15098) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 12939) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14019) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 11860) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10781) -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 20789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 14314) -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> +[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 2443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 61503) -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 60424) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 58266) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 59345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 57187) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 5000 ps] RD @ (3, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55028) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53949) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50711) -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49632) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 47474) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 48553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> +[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 43157) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 44236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 42078) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 40999) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 39919) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 37761) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 38840) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 36682) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35603) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33444) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32365) -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 31286) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29127) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 30207) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (7, 28048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 22652) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 21573) -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 20494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 18335) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 19415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 8622) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 9702) -> [ 7500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 17256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16177) -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15098) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 12939) -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14019) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 5385) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6464) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 65525) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> -[ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 59050) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 52574) -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 51495) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 49337) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 50416) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> [ 5000 ps] RD @ (3, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 39624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 34228) -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 33149) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 30990) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32070) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28832) -> [ 5000 ps] RD @ (7, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 23436) -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20198) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> -[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16961) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 11860) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10781) -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 13723) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 8622) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 9702) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 7248) -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 1852) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> -[ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 61992) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 60913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 5385) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 54437) -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 3226) -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 53358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 2147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 51200) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 52279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 65525) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 1068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> [ 5000 ps] RD @ (3, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 59050) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40408) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> -[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52574) -> +[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49337) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 48258) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 37170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 41782) -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 34228) -> +[ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32070) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (7, 29911) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28832) -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 23436) -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 22357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 20198) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 21278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> [ 5000 ps] RD @ (7, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16961) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 13723) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 7248) -> +[ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 6169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 4010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 1852) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 2931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> [ 5000 ps] RD @ (3, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 61992) -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 60913) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> +[ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53358) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52279) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (3, 50121) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 43645) -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 42566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 40408) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 41487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 35012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32853) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 33933) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 31774) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> [ 5000 ps] RD @ (7, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29616) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28537) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> [ 5000 ps] RD @ (3, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 23141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19903) -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18824) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16665) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17745) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 37170) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35012) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32853) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33933) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 15586) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14507) -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 31774) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11269) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 12349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29616) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 10190) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 9111) -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 25299) -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 8032) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 24220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (7, 22061) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (3, 23141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19903) -> [ 5000 ps] RD @ (7, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18824) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16665) -> [ 2500 ps] PRE @ (3) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17745) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 15586) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14507) -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11269) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 12349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 10190) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 9111) -> +[ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8032) -> +[ 7500 ps] NOP -> -------------------------------- DONE TEST 2: RANDOM Number of Operations: 2304 -Time Started: 251670 ns -Time Done: 361760 ns +Time Started: 304100 ns +Time Done: 413300 ns Average Rate: 47 ns/request -------------------------------- -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 5873) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 6953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5873) -> +[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6953) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 413430000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -FAILED: Address = 18962385, expected data = 0032fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 361900000.0 ps [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> @@ -19546,7 +21901,42 @@ FAILED: Address = 18962385, expected data = 0032fe1f8fb1f01f8fb0e21f8fafd41f8fae [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> - +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> ------- SUMMARY ------- Number of Writes = 4608 @@ -19562,8 +21952,8 @@ TEST CALIBRATION [-]: read_test_address_counter = 200 [-]: correct_read_data = 349 [-]: wrong_read_data = 0 -$stop called at time : 363250 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 705 -run: Time (s): cpu = 00:00:21 ; elapsed = 00:36:11 . Memory (MB): peak = 2856.781 ; gain = 8.004 ; free physical = 7374 ; free virtual = 13018 +$stop called at time : 415690 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:24 ; elapsed = 00:35:36 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1744 ; free virtual = 10777 ## quit -INFO: xsimkernel Simulation Memory Usage: 236960 KB (Peak: 294756 KB), Simulation CPU Usage: 2168010 ms -INFO: [Common 17-206] Exiting xsim at Sat Jul 27 23:51:45 2024... +INFO: xsimkernel Simulation Memory Usage: 236636 KB (Peak: 294432 KB), Simulation CPU Usage: 2131840 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 18:07:05 2025... diff --git a/testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_two_lanes_bus_delay_0.log b/testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_two_lanes_bus_delay_0.log new file mode 100644 index 0000000..eab8f6f --- /dev/null +++ b/testbench/xsim/test_10_000_ddr3_2_500_odelay_1_lanes_two_lanes_bus_delay_0.log @@ -0,0 +1,12751 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(ROW_BITS=16,MICR... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(ROW_BITS=16,LANES=2,ODE... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=1... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 11 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 128 +wb_sel_bits = 16 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 2 +WRITE_SLOT = 3 +ACTIVATE_SLOT = 0 +PRECHARGE_SLOT = 1 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 6 +CWL = 5 +PRECHARGE_TO_ACTIVATE_DELAY = 1 +ACTIVATE_TO_WRITE_DELAY = 0 +ACTIVATE_TO_READ_DELAY = 0 +ACTIVATE_TO_PRECHARGE_DELAY = 3 +ACTIVATE_TO_ACTIVATE_DELAY = 0 +READ_TO_WRITE_DELAY = 1 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 6 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 10000 +DDR3_CLK_PERIOD = 2500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [110724 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.cmd_task at time 1523824.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ZQC -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 36591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36591324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36601324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36611324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36621324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36631324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 36641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36641324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36651324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36661324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36671324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36681324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 36691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36691324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36701324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36711324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36721324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36731324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 36741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36741324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 36751324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36801324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36811324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36821324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36831324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 36841324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36851324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36861324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36871324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36881324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 36891324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36901324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36911324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36921324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36931324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 36941324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36951324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 36961324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 36961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37021324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37031324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 37041324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37051324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37061324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37071324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37081324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 37091324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37101324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37111324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37121324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37131324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 37141324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37151324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37161324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37171324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37181324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 37241324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37251324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37261324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37271324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37281324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 37291324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37301324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37311324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37321324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37331324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 37341324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37351324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37361324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37371324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37381324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 37391324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 37401324.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37451402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37461402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37471402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37481402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37491402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37501402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37511402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37521402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37531402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37541402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37551402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37561402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37571402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37581402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37591402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37601402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 37611402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 104) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 109) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 112) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 114) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 149) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 159) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 179) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 194) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 199) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 102) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 107) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 112) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 172) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 0) -> +[ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> +[ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 0) -> +[ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> +[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 0) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> +[ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 83690 ns +Time Done: 108260 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +FAILED: Address = 1151, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092f75e2592f6502592f5422592f43425, read data = 00000000000000000000000123456789 @ 108340000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 32768) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 32768) -> +[ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> +[ 2500 ps] ACT @ (3, 32768) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32768) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 32768) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 32768) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 32768) -> [ 7500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 32768) -> +[ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 2500 ps] ACT @ (0, 32769) -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 32769) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32768) -> +[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32768) -> [ 5000 ps] RD @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32768) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32768) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 32768) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> +[ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (6, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32768) -> [ 5000 ps] RD @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32769) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32769) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 108260 ns +Time Done: 132850 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> +FAILED: Address = 33555583, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000faf75ef5faf650f5faf542f5faf434f5, read data = 00000000000000000000000123456789 @ 132930000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 65535) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 65535) -> +[ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> +[ 2500 ps] ACT @ (3, 65535) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 65535) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 65535) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 65535) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 65535) -> [ 7500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 65535) -> +[ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> +[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 65535) -> +[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 65535) -> [ 5000 ps] RD @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 65535) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65535) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 65535) -> [ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 65535) -> +[ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 65535) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65535) -> [ 5000 ps] RD @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 132850 ns +Time Done: 157440 ns +Average Rate: 10 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 67108991, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521a8fa4521981a4521873a4521765a4, read data = 00000000000000000000000123456789 @ 157520000.0 ps +[ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2582) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2043) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1503) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 963) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 154) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64881) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64341) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63532) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63262) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62722) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62183) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62452) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61643) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61373) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60294) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60564) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60024) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59485) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58945) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59215) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57866) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57326) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56787) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57056) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 56247) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55707) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55168) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54628) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54089) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 53549) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53819) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52740) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53009) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52470) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51391) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51660) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50851) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50581) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50311) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 49502) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49772) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49232) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48693) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48153) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48423) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47074) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45995) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46264) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45455) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44915) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44106) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44376) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43836) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43297) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] ACT @ (4, 42757) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41948) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41678) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41138) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40599) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40868) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40059) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39789) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38710) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38980) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38440) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37901) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 37361) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37631) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36821) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36282) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35742) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35203) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34663) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34123) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33584) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33044) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32505) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31965) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31156) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31425) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30886) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30346) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29807) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28997) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29267) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28188) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27648) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27918) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26839) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26569) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25760) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26029) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25490) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24950) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24411) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24680) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23871) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23331) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22792) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22252) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 21713) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21173) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20364) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20633) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20094) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19554) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19015) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18205) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18475) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17935) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17396) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16856) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16317) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16047) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15777) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 14968) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15237) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14698) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14158) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13619) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13888) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13079) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12539) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12000) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11460) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11730) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 10921) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10651) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10381) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9572) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9841) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9302) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8762) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 8223) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8492) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7683) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7143) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6604) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6064) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5525) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5255) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4985) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 4176) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4445) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3906) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3366) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3636) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2827) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3096) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] ACT @ (4, 2017) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2287) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1747) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 668) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 938) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65395) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 128) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65125) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64585) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64046) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64315) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 63506) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62966) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 62157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62427) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61887) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61348) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60808) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59999) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60268) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59729) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58650) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58919) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58110) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58380) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57840) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57570) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 56761) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57031) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56491) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55952) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55412) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55682) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54603) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54333) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53254) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53523) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52714) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52444) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51365) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51635) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51095) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50556) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 50016) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50286) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49207) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49476) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48937) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48397) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47858) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47318) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47048) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46778) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45969) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46239) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45699) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45160) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45429) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44620) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43811) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 43271) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43541) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43001) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42462) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42731) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41922) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41652) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41382) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40573) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40843) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40303) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39764) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39224) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39494) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37605) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37066) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37335) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 36526) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36256) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35717) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35986) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35177) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35447) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34907) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34368) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33828) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34098) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33019) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33288) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32749) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32209) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31670) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30860) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31130) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 30321) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30590) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29511) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29781) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28972) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28702) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28432) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27623) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27892) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27353) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] ACT @ (4, 26813) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 26274) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25734) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25194) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24655) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24115) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24385) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23576) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23036) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 22227) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22496) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21417) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20878) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20068) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20338) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 19529) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19798) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19259) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18719) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18989) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18180) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17910) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17640) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16831) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16561) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16021) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 15482) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15751) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14672) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14942) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14402) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13863) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13323) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13593) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 12784) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12514) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11974) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12244) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11435) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11704) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11165) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10625) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 10086) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9276) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9546) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9006) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8467) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7927) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7388) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7118) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6848) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 6039) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6308) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5229) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 4690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4959) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3610) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2531) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2801) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1992) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1722) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1452) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 643) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 912) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 373) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65369) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 64830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64290) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63750) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63211) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62671) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61862) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62131) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61592) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61052) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60513) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60782) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59973) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60243) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59703) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59433) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 58624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58894) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58354) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57815) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57275) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57545) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56196) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55656) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55117) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55386) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54577) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54307) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54037) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 53228) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53498) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52958) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52419) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52149) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51879) -> [ 7500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51070) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51339) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50800) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50260) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49721) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49181) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48911) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 47832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48102) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47562) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47023) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46483) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46753) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45404) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44864) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44325) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44594) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43785) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42436) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42706) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42166) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41627) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 41087) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40547) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40008) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39468) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38929) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38389) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37849) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 37040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37310) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36770) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36231) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36500) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35691) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34882) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34612) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34072) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33533) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33802) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32993) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32723) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31644) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31914) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31374) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30835) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 30295) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30565) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29486) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29755) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29216) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28676) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28137) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27597) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27057) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26518) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25978) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26248) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25439) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24899) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24090) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24359) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23820) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23280) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 22741) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21931) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22201) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 21392) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21661) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20582) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20852) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19773) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19503) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18694) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18963) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18424) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17884) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17345) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17614) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16805) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16265) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15726) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15186) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 14647) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14377) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14107) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13298) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13567) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13028) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12488) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11949) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11409) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11139) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10869) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10330) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9790) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10060) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9251) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8981) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8711) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7902) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8171) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7632) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7092) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 6553) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6822) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6013) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5473) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4934) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4394) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3855) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3315) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2506) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2775) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1696) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1157) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1426) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 347) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 617) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 77) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65074) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64804) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63995) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63725) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63455) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62646) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62915) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62376) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61836) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 61297) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61566) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60757) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59678) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59138) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58598) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58059) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57519) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56980) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57249) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56440) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55900) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55091) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55361) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54821) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54282) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 53742) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52933) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52663) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52123) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51853) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51044) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50774) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49695) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49965) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49425) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48886) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48346) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48616) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47267) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46727) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46188) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46457) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 45648) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45378) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45108) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44569) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44029) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43490) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42950) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42141) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42410) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41871) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41331) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40792) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41061) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40252) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39982) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39712) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 38903) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39173) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38633) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 37554) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37824) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36475) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35935) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] ACT @ (0, 35396) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35665) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 34856) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34316) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33777) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33237) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32698) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32158) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31349) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31618) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31079) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30539) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30000) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30269) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29460) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29730) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29190) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28920) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 28111) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28381) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27841) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27302) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26762) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27032) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26222) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25683) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25143) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24604) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24873) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24064) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23524) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22985) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22445) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22715) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 21906) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21636) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21096) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21366) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20557) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20826) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20287) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19747) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19208) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19477) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18398) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18668) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18128) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17589) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17049) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17319) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16510) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16779) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16240) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15970) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 15161) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15430) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14891) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14351) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13812) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14081) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13002) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13272) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12732) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12193) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11653) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11923) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11114) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10844) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10574) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9765) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10034) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9495) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8955) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 8416) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7606) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7876) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7336) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6797) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6257) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6527) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5718) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5448) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5178) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 4369) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4638) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3559) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3829) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3020) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3289) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2210) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2480) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 1671) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1940) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 861) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1131) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65318) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64509) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64239) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63699) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63160) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63429) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62620) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61541) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61001) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61271) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60462) -> [ 7500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59922) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 59113) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59382) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58843) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58303) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58573) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57764) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58033) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56954) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57224) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 56415) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55605) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55875) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54796) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54526) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53986) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53447) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53716) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52907) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52637) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52367) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51558) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51828) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51288) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50749) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 50209) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50479) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49400) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49669) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49130) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48590) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48320) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47511) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47241) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46971) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46162) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46432) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45892) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45353) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45622) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44813) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44004) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44273) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 43464) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43734) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42655) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42924) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42115) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41845) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41575) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40766) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40496) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39957) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 39417) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39687) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38338) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37798) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37259) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37528) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 36719) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36179) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35640) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35100) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34561) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34021) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33212) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33481) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32942) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32402) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31863) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31323) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31053) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30783) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 29974) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30244) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29704) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28625) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28895) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27546) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27006) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26467) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26736) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25927) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25387) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24578) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24848) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24308) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23769) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 23229) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22689) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22150) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21610) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20261) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20531) -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19991) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2582) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2043) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1503) -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1233) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 694) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 963) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 154) -> [ 5000 ps] RD @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65420) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64881) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64611) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64341) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63532) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63262) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> +[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62722) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62183) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62452) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 61913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61643) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61373) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60564) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60294) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60024) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59485) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 59215) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58945) -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58136) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58405) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57866) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57326) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56787) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57056) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56247) -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55977) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55707) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 55168) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54898) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54628) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54089) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53819) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53549) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52740) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52470) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 5000 ps] RD @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51930) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51391) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51660) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50851) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50581) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50311) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49772) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49502) -> +[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49232) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48693) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 48423) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48153) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47344) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47074) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46804) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46534) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45995) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46264) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45455) -> [ 5000 ps] RD @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45185) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44915) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44376) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44106) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43836) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43297) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43027) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42757) -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41948) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42217) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 41678) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41138) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40599) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40059) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39250) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 38980) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38710) -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38440) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37901) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37631) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37361) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36552) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36821) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 36282) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35742) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35203) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35472) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34393) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34663) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 34123) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33044) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32505) -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31695) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31965) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31425) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31156) -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30886) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30346) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 30076) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29807) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28997) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29267) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28727) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28188) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27648) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27918) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 27378) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27109) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26839) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26569) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26029) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25760) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25490) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24950) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24680) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24411) -> [ 5000 ps] RD @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23601) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23871) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 23331) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22792) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22252) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21713) -> +[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21443) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21173) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 20633) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20364) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19554) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19284) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19015) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18205) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18475) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17935) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 5000 ps] RD @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17396) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16856) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17126) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16317) -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16047) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15777) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15237) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14968) -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14698) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14158) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 13888) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13619) -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13079) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12539) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12000) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11460) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11730) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10921) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10651) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10381) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 9841) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9572) -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9302) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8762) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 8492) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8223) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7413) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7683) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 7143) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6874) -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6604) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6064) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5525) -> [ 5000 ps] RD @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5255) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4985) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4445) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4176) -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3906) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3366) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3096) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2827) -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2017) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2287) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 1747) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 668) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65395) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 128) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 65125) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64855) -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64046) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64315) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63506) -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63236) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62966) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62427) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62157) -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61348) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 61078) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60808) -> +[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59999) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60268) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 59729) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58650) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58919) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58110) -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57840) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57301) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57570) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57031) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56761) -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56491) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55952) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55682) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55412) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54603) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 54333) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> +[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53793) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53254) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53523) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 52984) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52714) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52444) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51635) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51365) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51095) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50556) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50825) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50286) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50016) -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49207) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49476) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48937) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48397) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47858) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47318) -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47048) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46778) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 46239) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45969) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45699) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45160) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44890) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44620) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43811) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43541) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 5000 ps] RD @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43001) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42462) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42731) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41922) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41652) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41382) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 40843) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40573) -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40303) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39764) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 39494) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39224) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38415) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 38145) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37875) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37605) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37066) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37335) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36526) -> [ 5000 ps] RD @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36256) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35986) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35447) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35177) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34907) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34368) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34098) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33828) -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33019) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33288) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 32749) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32209) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31670) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30860) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31130) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 30590) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30321) -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29511) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29781) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28972) -> [ 5000 ps] RD @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28702) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28432) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27892) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27623) -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27353) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26813) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26543) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26274) -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25464) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25734) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 25194) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24655) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24115) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24385) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23576) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22227) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22496) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21417) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 21147) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20878) -> +[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20068) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20338) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 19798) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19259) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18719) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18989) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18180) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17910) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17640) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17100) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16831) -> [ 5000 ps] RD @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16561) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16021) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15751) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15482) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14672) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14942) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 14402) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13863) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13323) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13593) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 13053) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12784) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12514) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12244) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11704) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11435) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10625) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10895) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10086) -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9276) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9546) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 9006) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8467) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7927) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7388) -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7118) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6848) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 6308) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6039) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5229) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4959) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4690) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3880) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3610) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 5000 ps] RD @ (4, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3071) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2531) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2801) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1992) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1722) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1452) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 912) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 643) -> +[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 373) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65369) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 65099) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64830) -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64020) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64290) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63750) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63481) -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63211) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62671) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61862) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 61592) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 5000 ps] RD @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61052) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60513) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60782) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59973) -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59703) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59433) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58894) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58624) -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58354) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57815) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 57545) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57275) -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56466) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56196) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55926) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55656) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55117) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55386) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54577) -> [ 5000 ps] RD @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54307) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54037) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53498) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53228) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52958) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52419) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52149) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51879) -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51070) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51339) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 50800) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50260) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49721) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49181) -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48911) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48372) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48102) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47832) -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47562) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47023) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46753) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46483) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45674) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 45404) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> +[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44864) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44325) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44594) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43785) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43245) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42706) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42436) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42166) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41627) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41896) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41357) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41087) -> [ 5000 ps] RD @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40278) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40547) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 40008) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39468) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38929) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38389) -> +[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38119) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37849) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 37310) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37040) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36770) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36231) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35961) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35691) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34882) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34612) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34072) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33533) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33802) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32993) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31644) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31914) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31374) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30835) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30565) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30295) -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29486) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29755) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29216) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28676) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28137) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28406) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27327) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27597) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27057) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26518) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25978) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26248) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25439) -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25169) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24899) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 24359) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24090) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23820) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23280) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 23010) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22741) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21931) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22201) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 21661) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21122) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20582) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20852) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20043) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19503) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18963) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18694) -> +[ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18424) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17884) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 17614) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17345) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16535) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16805) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 16265) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15996) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15726) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15186) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14647) -> [ 5000 ps] RD @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14377) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14107) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13567) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13298) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13028) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12488) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12218) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11949) -> +[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11139) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11409) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 10869) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10330) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9790) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10060) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9251) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8981) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8711) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8171) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7902) -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7632) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7092) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6822) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6553) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5743) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6013) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 5473) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> +[ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4934) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4394) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4664) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3855) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3315) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 2775) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2506) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2236) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1696) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1426) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1157) -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 347) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 617) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 77) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65074) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64534) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63995) -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63725) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63455) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 62915) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62646) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62376) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61836) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61566) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61297) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60487) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60757) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60217) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59678) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59138) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59408) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58329) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58598) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58059) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56980) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57249) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56440) -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56170) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55900) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 55361) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55091) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54821) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54282) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 54012) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53742) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52933) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52663) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 5000 ps] RD @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52123) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51584) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51853) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51044) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50774) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49965) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49695) -> +[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49425) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48886) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 48616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48346) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47537) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47267) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46997) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46188) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46457) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45648) -> [ 5000 ps] RD @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45378) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45108) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44569) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44299) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44029) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43490) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43220) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42950) -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42141) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42410) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41871) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41331) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40792) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41061) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40252) -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39982) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39712) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 39173) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38903) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38633) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38094) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37824) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37554) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36745) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 36475) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 5000 ps] RD @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35935) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35396) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35665) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34856) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34316) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33777) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33507) -> +[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33237) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32698) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 32428) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32158) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31349) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31618) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31079) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30809) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30539) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30000) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30269) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29460) -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29190) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28920) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28381) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28111) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27841) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27302) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27032) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26762) -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25953) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26222) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 25683) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25143) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24604) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24873) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23794) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24064) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 23524) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23255) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22985) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22445) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22715) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21906) -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21636) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21366) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20826) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20557) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20287) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19747) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19477) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19208) -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18398) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18668) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 18128) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17589) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17049) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17319) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16510) -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16240) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15970) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15430) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15161) -> [ 5000 ps] RD @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14891) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14351) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 14081) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13812) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13002) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13272) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12732) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> +[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12193) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11653) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11923) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 11383) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11114) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10844) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10574) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10034) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9765) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9495) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8955) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9225) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8685) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8416) -> [ 5000 ps] RD @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7606) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7876) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 7336) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6797) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6257) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6527) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5718) -> +[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5448) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5178) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 4638) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4369) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4099) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3559) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3289) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3020) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2750) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2210) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2480) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1940) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1401) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 861) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1131) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 322) -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65318) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64509) -> +[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64239) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63699) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 63429) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63160) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62350) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62620) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 62080) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61811) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61541) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61001) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61271) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60462) -> [ 5000 ps] RD @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60192) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59922) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59382) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59113) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58843) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58303) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58033) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57764) -> +[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56954) -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57224) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (4, 56684) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55605) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55875) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54796) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 54526) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54256) -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53986) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53447) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53716) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52907) -> [ 5000 ps] RD @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52637) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52367) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51828) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51288) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50749) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 50479) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50209) -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49400) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49669) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49130) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48860) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48590) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48051) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48320) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47511) -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47241) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46971) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46432) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46162) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45892) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45353) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 45083) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44813) -> +[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44004) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44273) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 43734) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42655) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42924) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42115) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41845) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41575) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41036) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40766) -> [ 5000 ps] RD @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40496) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39957) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39687) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39417) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38608) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 38338) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> +[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37798) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37259) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37528) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 36989) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36719) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36179) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35640) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35370) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34561) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34830) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34291) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34021) -> [ 5000 ps] RD @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33212) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33481) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32942) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32402) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31863) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31323) -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31053) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30783) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 30244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29974) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29704) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29165) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28895) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28625) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27816) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27546) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 5000 ps] RD @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27006) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26467) -> [ 2500 ps] PRE @ (4) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26736) -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> +[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25927) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25387) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24578) -> +[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24308) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23769) -> +[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] ACT @ (0, 23499) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23229) -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22420) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22689) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 22150) -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21880) -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21610) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21071) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20261) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20531) -> [ 7500 ps] NOP -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 157440 ns +Time Done: 267080 ns +Average Rate: 47 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19991) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +FAILED: Address = 75846088, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c9c1ad56c8b3ad56c7a5ad56c697ad, read data = 00000000000000000000000123456789 @ 267200000.0 ps +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> +[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> +[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 269470 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:13 ; elapsed = 00:07:42 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1780 ; free virtual = 10750 +## quit +INFO: xsimkernel Simulation Memory Usage: 156312 KB (Peak: 210572 KB), Simulation CPU Usage: 461440 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 22:31:31 2025... diff --git a/testbench/xsim/test_12_000_ddr3_3_000_odelay_0_lanes_two_lanes_bus_delay_0.log b/testbench/xsim/test_12_000_ddr3_3_000_odelay_0_lanes_two_lanes_bus_delay_0.log new file mode 100644 index 0000000..f5e5797 --- /dev/null +++ b/testbench/xsim/test_12_000_ddr3_3_000_odelay_0_lanes_two_lanes_bus_delay_0.log @@ -0,0 +1,12015 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:594] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:595] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:597] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:598] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:599] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:600] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:846] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:847] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:849] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:850] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:851] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:852] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:853] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1030] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1031] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1033] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1034] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1035] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1036] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=1... +Compiling module xil_defaultlib.ddr3_top(ROW_BITS=16,AUX_WIDTH=1... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 11 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 128 +wb_sel_bits = 16 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 3 +WRITE_SLOT = 3 +ACTIVATE_SLOT = 2 +PRECHARGE_SLOT = 0 +REMAINING_SLOT = 1 + +DELAYS: +----------------------------- +CL = 5 +CWL = 5 +PRECHARGE_TO_ACTIVATE_DELAY = 0 +ACTIVATE_TO_WRITE_DELAY = 0 +ACTIVATE_TO_READ_DELAY = 0 +ACTIVATE_TO_PRECHARGE_DELAY = 3 +ACTIVATE_TO_ACTIVATE_DELAY = 0 +READ_TO_WRITE_DELAY = 1 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 6 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> +[ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> +[ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> +[ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> +[ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> +[ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> +[ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> +[ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> [ 3000 ps] MRS -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.cmd_task at time 1561500.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] MRS -> ddr3_dimm_micron_sim.ddr3_0.cmd_task: at time 1933500.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] ZQC -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 100) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 101) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 102) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 104) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 105) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 107) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 108) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 109) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 110) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 112) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 113) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 114) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 115) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 117) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 119) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 120) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 122) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 123) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 124) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 125) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 127) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 128) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 129) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 130) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 132) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 133) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 134) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 135) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 137) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 138) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 139) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 140) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 143) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 144) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 148) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 149) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 153) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 154) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 155) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 156) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 157) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 158) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 159) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 160) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 161) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 162) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 163) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 164) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 167) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 168) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 169) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 171) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 172) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 173) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 174) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 175) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 176) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 177) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 178) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 179) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 180) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 181) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 183) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 184) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 186) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 187) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 188) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 189) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 191) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 193) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 195) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 196) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 198) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 199) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 100) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 101) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 102) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 104) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 105) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 107) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 108) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 109) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 110) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 112) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 113) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 114) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 115) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 117) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 119) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 120) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 122) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 123) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 124) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 125) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 127) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 128) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 129) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 130) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 132) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 133) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 134) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 135) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 137) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 138) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 139) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 140) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 141) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 143) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 144) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 146) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 148) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 149) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 151) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 153) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 154) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 155) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 156) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 157) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 158) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 159) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 160) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 161) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 162) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 163) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 164) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 166) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 167) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 168) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 169) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 171) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 172) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 173) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 174) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 175) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 176) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 177) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 178) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 179) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 180) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 181) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 183) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 184) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 186) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 187) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 188) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 189) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 191) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 195) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 196) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 198) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 199) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] WR @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> +[ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] WR @ (4, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> [ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] WR @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] RD @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> +[ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] RD @ (4, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> [ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] RD @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> +[ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 62964 ns +Time Done: 92256 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32768) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> FAILED: Address = 1151, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092f75e2592f6502592f5422592f43425, read data = 00000000000000000000000123456789 @ 92352000.0 ps +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32768) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (1, 32768) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 32768) -> +[ 3000 ps] WR @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 32768) -> [ 3000 ps] WR @ (2, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 32768) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 32768) -> [ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (5, 32768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (6, 32768) -> [ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 32768) -> +[ 3000 ps] WR @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 32769) -> [ 3000 ps] WR @ (7, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32769) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32768) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32768) -> [ 3000 ps] RD @ (0, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (1, 32768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 32768) -> +[ 3000 ps] RD @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 32768) -> [ 3000 ps] RD @ (2, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 32768) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 32768) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (6, 32768) -> [ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 32768) -> +[ 3000 ps] RD @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32768) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 32769) -> [ 3000 ps] RD @ (7, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32769) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 92256 ns +Time Done: 122076 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65535) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> FAILED: Address = 33555583, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000faf75ef5faf650f5faf542f5faf434f5, read data = 00000000000000000000000123456789 @ 122172000.0 ps +[ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 65535) -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 65535) -> [ 3000 ps] WR @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 65535) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 65535) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 65535) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 65535) -> [ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 65535) -> +[ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 65535) -> [ 3000 ps] WR @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65535) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 65535) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 65535) -> [ 3000 ps] RD @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 65535) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 65535) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65535) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 65535) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 65535) -> +[ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 65535) -> [ 3000 ps] RD @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 122076 ns +Time Done: 151380 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> FAILED: Address = 67108991, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521a8fa4521981a4521873a4521765a4, read data = 00000000000000000000000123456789 @ 151476000.0 ps +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2582) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 960) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2043) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2312) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1503) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1773) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1233) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 694) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 963) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 424) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 154) -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65420) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64881) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64341) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64611) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63532) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62992) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63262) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62722) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62183) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62452) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61643) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61913) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61373) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60834) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60294) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60564) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60024) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59485) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59754) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58945) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59215) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58675) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58405) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57596) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57866) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57326) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56787) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57056) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56247) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56517) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55977) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55438) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55707) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54898) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55168) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54628) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54089) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54358) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 53549) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53819) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53279) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52740) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52200) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52470) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51930) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51391) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51660) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50851) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50581) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50042) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50311) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49502) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49772) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49232) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48693) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48962) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48153) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48423) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47883) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47613) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 46804) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47074) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46534) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45995) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46264) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45455) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45725) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45185) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44646) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44915) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 44106) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44376) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43836) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43297) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43566) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42757) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41948) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42217) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41408) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41678) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41138) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40599) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40868) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40059) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40329) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39789) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39250) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39519) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38710) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38980) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38440) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37901) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 37361) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37631) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37091) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36552) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36821) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36012) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36282) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35742) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35203) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35472) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34933) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34393) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34663) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 33854) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33584) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33044) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33314) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32505) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32774) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32235) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31695) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31965) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31156) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31425) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30886) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30346) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30616) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29807) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30076) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28997) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29267) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28458) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28727) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28188) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27648) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27918) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27378) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27109) -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26839) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26299) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26569) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25760) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26029) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 25490) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24950) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24411) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24680) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23601) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23871) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23062) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23331) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22792) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22252) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22522) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21713) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21982) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21443) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20903) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21173) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20364) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20633) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20094) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19554) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19015) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19284) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18205) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18475) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17666) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17935) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17396) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16856) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17126) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16317) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16586) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16047) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15507) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15777) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14968) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15237) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14698) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14158) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14428) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 13619) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13888) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13349) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12809) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13079) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12270) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12539) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12000) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11460) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11730) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10921) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10651) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10111) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10381) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9572) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9841) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9302) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8762) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9032) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 8223) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8492) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7953) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7413) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7683) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 6874) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7143) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6604) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6064) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5525) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5794) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5255) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4715) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4985) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 4176) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4445) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3906) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3366) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3636) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2827) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3096) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2557) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2017) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2287) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 1478) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1747) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1208) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 668) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 398) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65395) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 128) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64855) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65125) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64585) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64046) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64315) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 63506) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63776) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63236) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62697) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62966) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 62157) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62427) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61887) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61348) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61617) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60808) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61078) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60538) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59999) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60268) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59459) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59729) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59189) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58650) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58919) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58110) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58380) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57840) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57301) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57570) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56761) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57031) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56491) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55952) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56221) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 55412) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55682) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54603) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54872) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54333) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54063) -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53793) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53254) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53523) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52714) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52984) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52444) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51905) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51365) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51635) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51095) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50556) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50825) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50016) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50286) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49746) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49207) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49476) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48667) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48937) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48397) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47858) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48127) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47318) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47588) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47048) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46509) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46778) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45969) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46239) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45699) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45160) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45429) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44620) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44890) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43811) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44080) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43271) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43541) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43001) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42462) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42731) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41922) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42192) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41652) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41113) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41382) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40573) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40843) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40303) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39764) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40033) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 39224) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39494) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38415) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38684) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37875) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37605) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37066) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37335) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36526) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36796) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36256) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35717) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35986) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 35177) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35447) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34907) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34368) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34637) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33828) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33558) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33019) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33288) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32479) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32749) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32209) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31670) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31400) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30860) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31130) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30321) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30590) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30051) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29511) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29781) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28972) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29241) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28702) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28162) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28432) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27623) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27892) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27353) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26813) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27083) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26274) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26543) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25464) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25734) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24925) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24655) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24115) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24385) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23576) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23845) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23306) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22766) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23036) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 22227) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22496) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21957) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21417) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21687) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20878) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20608) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20068) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20338) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19529) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19798) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 19259) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18719) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18989) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18180) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18449) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17910) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17370) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17640) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16831) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17100) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16561) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16021) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16291) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15751) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15482) -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15212) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14672) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14942) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14133) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14402) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13863) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13323) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13593) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12784) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13053) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12514) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11974) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12244) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11435) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11704) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 10625) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10895) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 10086) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10355) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9816) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9276) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9546) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 8737) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9006) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8467) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7927) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7388) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7657) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6578) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6848) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6039) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6308) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5769) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5229) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5499) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 4690) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4959) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4420) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 3880) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4150) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 3341) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3610) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3071) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2531) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 1992) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2261) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1722) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1452) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 643) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 912) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 373) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65369) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64830) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65099) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64560) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64020) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64290) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63481) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63750) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63211) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62671) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62941) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62401) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61862) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61322) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61592) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61052) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60513) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60782) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59973) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60243) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59703) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59164) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59433) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58624) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58894) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58354) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57815) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58084) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57275) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57545) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57005) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56466) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56735) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 55926) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56196) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55656) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55117) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55386) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54577) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54847) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54307) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54037) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 53228) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53498) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52958) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52419) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52688) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51879) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51609) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51070) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51339) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50530) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50800) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50260) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49721) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49990) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49181) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49451) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48911) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48372) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48641) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47832) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48102) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47562) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47023) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47292) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 46483) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46753) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45674) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45943) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45134) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45404) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44864) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44325) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44594) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43785) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44055) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43515) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42976) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43245) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42706) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42436) -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42166) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41627) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41896) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41087) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41357) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40817) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40278) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40547) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39738) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40008) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39468) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38929) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39198) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38389) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38659) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37580) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37849) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 37040) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37310) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36770) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36231) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36500) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 35691) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35421) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34882) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34342) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34612) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34072) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33533) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33802) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32993) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33263) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32723) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32184) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32453) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31644) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31914) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31374) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30835) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31104) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 30295) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30565) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30025) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29486) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29755) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 28946) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29216) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28676) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28137) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28406) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27867) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27327) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27597) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26788) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27057) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26518) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25978) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26248) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25439) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25708) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24629) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24899) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 24090) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24359) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23820) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23280) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23550) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 22741) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23010) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22471) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21931) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22201) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21392) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21661) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21122) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20582) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20043) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20312) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19773) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19233) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19503) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18694) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18963) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18424) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 17884) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18154) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 17345) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17614) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17075) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16535) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16805) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 15996) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16265) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15726) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15186) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15456) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14647) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14916) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14377) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13837) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14107) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13298) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13567) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13028) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12488) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12758) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11949) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12218) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11679) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11409) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 10600) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10869) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10330) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9790) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10060) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9251) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9520) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8981) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8441) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8711) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7902) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8171) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7632) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7092) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7362) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6553) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6822) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6283) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5743) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6013) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5204) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5473) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4934) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4394) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 4664) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4124) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3855) -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3585) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3045) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3315) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2506) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2775) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2236) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1696) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1966) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1157) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1426) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 887) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 347) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 617) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 65344) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 77) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65074) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64534) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64804) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63995) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64264) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63725) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63455) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 62646) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62915) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62376) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61836) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61297) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61566) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60487) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60757) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59948) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60217) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59678) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59138) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59408) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58868) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58329) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58598) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57789) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58059) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57519) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56980) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57249) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56440) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56710) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56170) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55631) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55900) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 55091) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55361) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54821) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54282) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54551) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53742) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54012) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52933) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53202) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52393) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52663) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52123) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51584) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51853) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51044) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51314) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50774) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50235) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50504) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49695) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49965) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49425) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48886) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49155) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48346) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48616) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48076) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47537) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47806) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46997) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47267) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46727) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46188) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46457) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45648) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45918) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45378) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44839) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45108) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 44299) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44569) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44029) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43490) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43759) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 42950) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 43220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42680) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42410) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41601) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41871) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41331) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40792) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41061) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40252) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40522) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39982) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39443) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39712) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38903) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39173) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38633) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38094) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38363) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 37554) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37824) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37284) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37014) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36205) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36475) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35935) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35396) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35665) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34856) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34586) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34047) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34316) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33507) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33777) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33237) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32698) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32967) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32158) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32428) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31888) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31618) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31079) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30809) -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30539) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30000) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30269) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29460) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29730) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28651) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28920) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28111) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28381) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27841) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27302) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27571) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26762) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27032) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26492) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 25953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26222) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25413) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25683) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25143) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24604) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24873) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24334) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23794) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24064) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23255) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23524) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22985) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22445) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22715) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21906) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22175) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21636) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21096) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21366) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20557) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20826) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20287) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19747) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20017) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19208) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19477) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18938) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18398) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18668) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 17859) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18128) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17589) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17049) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17319) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16510) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16779) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16240) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15700) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15970) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15161) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15430) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14891) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14351) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14621) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 13812) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14081) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13542) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13002) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13272) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12463) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12732) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12193) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11653) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11923) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11114) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11383) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10844) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10304) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10574) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9765) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10034) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9495) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8955) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9225) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8416) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8685) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7606) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7876) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7067) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7336) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6797) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6257) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6527) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5718) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5987) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5448) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4908) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5178) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 4369) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4638) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4099) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3559) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3829) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 3020) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3289) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2210) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2480) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1671) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1940) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 861) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1131) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 322) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 591) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 65048) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65318) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64509) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64778) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64239) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63699) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63969) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63160) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 63429) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62890) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62620) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61811) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61541) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61001) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61271) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60462) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60731) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59652) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59922) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 59113) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59382) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58843) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58303) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58573) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58033) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57764) -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57494) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57224) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56415) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56684) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55605) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55875) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55335) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54796) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55065) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54256) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54526) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53986) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53447) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53716) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52907) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53177) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52637) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52367) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51558) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51828) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51288) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50749) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51018) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50209) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50479) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49400) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49669) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48860) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49130) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48590) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48051) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48320) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47511) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47781) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47241) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 46702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46971) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 46162) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46432) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45892) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45353) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45622) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 44813) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45083) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44543) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44273) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43464) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43734) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42655) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42924) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42115) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42385) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41845) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41306) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41575) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40766) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41036) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40496) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 39957) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40226) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 39417) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39687) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39147) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38877) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38068) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38338) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37798) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37259) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37528) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36719) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36989) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36449) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35910) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35370) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35640) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35100) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34561) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34830) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34021) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34291) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33751) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33481) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32672) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32942) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32402) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31863) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32132) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31323) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31593) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31053) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30514) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30783) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29974) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30244) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29704) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29165) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29434) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28625) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28895) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28355) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27816) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28085) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27276) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27546) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27006) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26467) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26736) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25927) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26197) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25657) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25387) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24578) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24848) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24308) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23769) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24038) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 23229) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23499) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22959) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22420) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22689) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21880) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21610) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21071) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21340) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20261) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20531) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19991) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2582) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 2043) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2312) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 1773) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1503) -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1233) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 694) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 963) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 424) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 154) -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 65420) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64881) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65150) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64611) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64341) -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63532) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 63801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63262) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62992) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62722) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62183) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62452) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61913) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61643) -> [ 3000 ps] RD @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61373) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60834) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60564) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60294) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60024) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59485) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59754) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59215) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58945) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58136) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58405) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57866) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57596) -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57326) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56787) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57056) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56517) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56247) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55977) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55438) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55707) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 55168) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54898) -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54628) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54089) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54358) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53819) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53549) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53279) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52740) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52470) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52200) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51930) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51391) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51660) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51121) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50851) -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50581) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50042) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50311) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49772) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49502) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49232) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48693) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48962) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48423) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48153) -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47883) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47344) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47613) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 47074) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46804) -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46534) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45995) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46264) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45725) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45455) -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44646) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44915) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44376) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44106) -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43836) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 43297) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43566) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 43027) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42757) -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42487) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41948) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42217) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41678) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41408) -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41138) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40599) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40868) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 40329) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40059) -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39789) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39250) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39519) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38980) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38710) -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38440) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37901) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38170) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37631) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37361) -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37091) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36552) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36821) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 36282) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36012) -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35742) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35203) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34933) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34393) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34663) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34123) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33854) -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33584) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33044) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33314) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32774) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32505) -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32235) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31695) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31965) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31425) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31156) -> [ 3000 ps] RD @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30886) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30346) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30616) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 30076) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29807) -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29537) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28997) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29267) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28727) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28458) -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28188) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27648) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27918) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27378) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27109) -> +[ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26839) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26299) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26569) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26029) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25760) -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25490) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24950) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24680) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24411) -> [ 3000 ps] RD @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23601) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23871) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 23331) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23062) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22792) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22252) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22522) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21982) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21713) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21443) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20903) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21173) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20633) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20364) -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20094) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19554) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 19824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19284) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19015) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18745) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18205) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18475) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17935) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17666) -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17396) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16856) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17126) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 16586) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16317) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16047) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15507) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15777) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15237) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14968) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14698) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14158) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14428) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13888) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13619) -> +[ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13079) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12809) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 12270) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12539) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12000) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11460) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11730) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11190) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10921) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10651) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10111) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10381) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9841) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9572) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9302) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8762) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9032) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8492) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8223) -> +[ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7413) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7683) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 7143) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6874) -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6604) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6064) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5794) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5525) -> [ 3000 ps] RD @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5255) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4715) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4985) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4445) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 4176) -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3906) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3366) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3636) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 3096) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2827) -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2557) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2017) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2287) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1747) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1478) -> +[ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1208) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 668) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 398) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65395) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 128) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 65125) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64855) -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64585) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64046) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64315) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63776) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63506) -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63236) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62697) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62966) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 62427) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62157) -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61887) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61348) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61617) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61078) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60808) -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60538) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59999) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60268) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 59729) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59459) -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59189) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58650) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58919) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58380) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58110) -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57840) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57301) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57570) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57031) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56761) -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56491) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55952) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56221) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 55682) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55412) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55142) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54603) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54872) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 54333) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54063) -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53793) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53254) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53523) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 52984) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52714) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52444) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51905) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51635) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51365) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51095) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50556) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50825) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50286) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50016) -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49746) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49207) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49476) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48937) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48667) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48397) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47858) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48127) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 47588) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47318) -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47048) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46509) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46778) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46239) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45969) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45699) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45160) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45429) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44890) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44620) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43811) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44080) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 43541) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43271) -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43001) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42462) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42731) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42192) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41922) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41652) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41113) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41382) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 40843) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40573) -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40303) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39764) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40033) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39494) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39224) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38954) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38415) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38684) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38145) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37875) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37605) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37066) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37335) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 36796) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36526) -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36256) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35717) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35986) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35447) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35177) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34907) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34368) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34637) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34098) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33828) -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33558) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33019) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33288) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32749) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32479) -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32209) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31670) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31400) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30860) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31130) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 30590) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30321) -> [ 3000 ps] RD @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30051) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29511) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29781) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29241) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28972) -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28702) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28162) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28432) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27892) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27623) -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27353) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26813) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27083) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26543) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26274) -> +[ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25464) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 25734) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25194) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24925) -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24655) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24115) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24385) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 23845) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23576) -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23306) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23036) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22766) -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 22227) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22496) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21957) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21417) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21687) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21147) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20878) -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20068) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20338) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19798) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19529) -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19259) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18719) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18989) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 18449) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18180) -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17910) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17370) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17640) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17100) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16831) -> [ 3000 ps] RD @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16561) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16021) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16291) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15751) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15482) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15212) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14672) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14942) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 14402) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14133) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13863) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13323) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13593) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13053) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12784) -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12514) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11974) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12244) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11704) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11435) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11165) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10625) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10895) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10355) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10086) -> [ 3000 ps] RD @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9816) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9276) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9546) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 9006) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8737) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8467) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7927) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7657) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7388) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6578) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6848) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6308) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6039) -> +[ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5769) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 5229) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5499) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4959) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4690) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4420) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3880) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3610) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3341) -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2531) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2801) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 2261) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1992) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1722) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1182) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1452) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 912) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 643) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 373) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65369) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 65099) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64830) -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64560) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64020) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64290) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63750) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63481) -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63211) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62671) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62941) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61862) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62131) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61592) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61322) -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61052) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60513) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60782) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60243) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59973) -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59703) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59164) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59433) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58894) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58624) -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58354) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57815) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58084) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57545) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57275) -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57005) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56466) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56735) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56196) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55926) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55656) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55117) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55386) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 54847) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54577) -> +[ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54307) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53768) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54037) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53498) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53228) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52958) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52419) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52688) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 52149) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51879) -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51609) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51070) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51339) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50800) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50530) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50260) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49721) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49990) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49451) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49181) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48911) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48372) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48641) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48102) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47832) -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47562) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47023) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 47292) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46753) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46483) -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46213) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45674) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45943) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 45404) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45134) -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44864) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44325) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44594) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44055) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43785) -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43515) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42976) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43245) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42706) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42436) -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41627) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41896) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41357) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41087) -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40817) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40278) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40547) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 40008) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39738) -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39468) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38929) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39198) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 38659) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38389) -> [ 3000 ps] RD @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37580) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37849) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37310) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37040) -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36770) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36231) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36500) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35961) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35691) -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35421) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34882) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35151) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34612) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34342) -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34072) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33533) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33802) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33263) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32993) -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32723) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32184) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32453) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31914) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31644) -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31374) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30835) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30565) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30295) -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30025) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29486) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29755) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 29216) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28946) -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28676) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28137) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28406) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27867) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27327) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27597) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27057) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26788) -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26518) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25978) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26248) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25708) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25439) -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24629) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24899) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24359) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24090) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23820) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23280) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23550) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23010) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22741) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21931) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22201) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 21661) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21392) -> +[ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21122) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20582) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20312) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20043) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19773) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19233) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19503) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 18963) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18694) -> [ 3000 ps] RD @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18424) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17884) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18154) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17614) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17345) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17075) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16535) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16805) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16265) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15996) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15726) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15186) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15456) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 14916) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14647) -> +[ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14377) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13837) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14107) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13567) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13298) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13028) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12488) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12758) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 12218) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11949) -> [ 3000 ps] RD @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11679) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11139) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11409) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10869) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10600) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10330) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9790) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10060) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9520) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9251) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8981) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8441) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8711) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8171) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7902) -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7632) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7092) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7362) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6822) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6553) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6283) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5743) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6013) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5473) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5204) -> [ 3000 ps] RD @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4934) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4394) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4664) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4124) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3855) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3585) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3045) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3315) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2775) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2506) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2236) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1696) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1966) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1426) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1157) -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 887) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 347) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 617) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 77) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65344) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65074) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64534) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64264) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63995) -> [ 3000 ps] RD @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63725) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63185) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63455) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 62915) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62646) -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62376) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61836) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61566) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61297) -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60487) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60757) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60217) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59948) -> +[ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59678) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59138) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58868) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58329) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58598) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58059) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57789) -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57519) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56980) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57249) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56710) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56440) -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55631) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55900) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 55361) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55091) -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54821) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54282) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54551) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 54012) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53742) -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52933) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53202) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 52663) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52393) -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52123) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51584) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51853) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51314) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51044) -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50774) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50235) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50504) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49965) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49695) -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49425) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48886) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49155) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48616) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48346) -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48076) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47537) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47806) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 47267) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46997) -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46727) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46188) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46457) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 45918) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45648) -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45378) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44839) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45108) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44569) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44299) -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44029) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43759) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43490) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 42950) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42680) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42141) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42410) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41871) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41601) -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41331) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40792) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41061) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 40522) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40252) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39982) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39443) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39712) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 39173) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38903) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38633) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38094) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38363) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37824) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37554) -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37284) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36745) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37014) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 36475) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36205) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35935) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35396) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35665) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35126) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34856) -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34586) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34047) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34316) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 33777) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33507) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33237) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32698) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32967) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32428) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32158) -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31888) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31349) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31618) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31079) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30809) -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30539) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30000) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30269) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 29730) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29460) -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29190) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28651) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28920) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28381) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28111) -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27841) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27302) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27571) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27032) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26762) -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26492) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25953) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26222) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 25683) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25413) -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25143) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24604) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24873) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23794) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24064) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 23524) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23255) -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22985) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22445) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22715) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22175) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21906) -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21636) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21096) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21366) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20826) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20557) -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20287) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19747) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20017) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19477) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19208) -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18938) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18398) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18668) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 18128) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17859) -> [ 3000 ps] RD @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17589) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17049) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17319) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 16779) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16510) -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16240) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15700) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15970) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15430) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15161) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14891) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14351) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14621) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 14081) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13812) -> +[ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13542) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13002) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13272) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 12732) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12463) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12193) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11653) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11923) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11383) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11114) -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10844) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10304) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10574) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10034) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9765) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9495) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8955) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9225) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8685) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8416) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7606) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7876) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 7336) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7067) -> +[ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6797) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6257) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6527) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5987) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5718) -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5448) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4908) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5178) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4638) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4369) -> [ 3000 ps] RD @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4099) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3559) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3829) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3289) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3020) -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2750) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2210) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2480) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1940) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1671) -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 861) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1131) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 591) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 322) -> +[ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 65048) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 65318) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64778) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64509) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64239) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63699) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63969) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63429) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63160) -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62890) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62350) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62620) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 62080) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61811) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61541) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61001) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61271) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60731) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60462) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59652) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59922) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59382) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59113) -> +[ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58843) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58303) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58573) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58033) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57764) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57494) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56954) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57224) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56684) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56415) -> [ 3000 ps] RD @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55605) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55875) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55335) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54796) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55065) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 54526) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54256) -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53986) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53716) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53447) -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52907) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53177) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52637) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52098) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52367) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51828) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51558) -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51288) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50749) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51018) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50479) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50209) -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49400) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49669) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49130) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48860) -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48590) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48051) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48320) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 47781) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47511) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47241) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46702) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46971) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46432) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46162) -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45892) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45353) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45622) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 45083) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44813) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44543) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44004) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44273) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 43734) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43464) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42655) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42924) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42385) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42115) -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41845) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 41306) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41575) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41036) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40766) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40496) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39957) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40226) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39687) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39417) -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38608) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38877) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 38338) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38068) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37798) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37259) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37528) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36989) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36719) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36449) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35910) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36179) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35640) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35370) -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35100) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34561) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34830) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34291) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34021) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33751) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33212) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33481) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32942) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32672) -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32402) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31863) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32132) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31593) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31323) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31053) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30514) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30783) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30244) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29974) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29704) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29165) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29434) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28895) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28625) -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28355) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27816) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28085) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27546) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27276) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27006) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26467) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26736) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26197) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25927) -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25657) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25118) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25387) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 24848) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24578) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24308) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23769) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24038) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23499) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23229) -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22959) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22420) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22689) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 22150) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21880) -> +[ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21610) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21071) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21340) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20801) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20261) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20531) -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 151380 ns +Time Done: 265920 ns +Average Rate: 49 ns/request +-------------------------------- + + +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19991) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> FAILED: Address = 75846088, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c9c1ad56c8b3ad56c7a5ad56c697ad, read data = 00000000000000000000000123456789 @ 266052000.0 ps +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 268388 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:12 ; elapsed = 00:05:49 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1519 ; free virtual = 10736 +## quit +INFO: xsimkernel Simulation Memory Usage: 154168 KB (Peak: 208428 KB), Simulation CPU Usage: 347860 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 22:56:42 2025... diff --git a/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_eight_lanes_bus_delay_0.log b/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_eight_lanes_bus_delay_0.log new file mode 100644 index 0000000..0e83b69 --- /dev/null +++ b/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_eight_lanes_bus_delay_0.log @@ -0,0 +1,19034 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:264] +WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:251] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=1... +Compiling module xil_defaultlib.ddr3_top(ROW_BITS=16,BYTE_LANES=... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_module_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 57 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 512 +wb_sel_bits = 64 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 3 +WRITE_SLOT = 3 +ACTIVATE_SLOT = 2 +PRECHARGE_SLOT = 0 +REMAINING_SLOT = 1 + +DELAYS: +----------------------------- +CL = 5 +CWL = 5 +PRECHARGE_TO_ACTIVATE_DELAY = 0 +ACTIVATE_TO_WRITE_DELAY = 0 +ACTIVATE_TO_READ_DELAY = 0 +ACTIVATE_TO_PRECHARGE_DELAY = 3 +ACTIVATE_TO_ACTIVATE_DELAY = 0 +READ_TO_WRITE_DELAY = 1 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 6 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U1R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [121036 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U1R1.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R1.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R1.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R1.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R1.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R1.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R1.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R1.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] ZQC -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21637636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21649636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21661636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21673636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21685636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21697636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21709636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21721636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21733636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21745636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21757636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21769636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21781636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21793636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21805636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21817636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21877636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21889636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21901636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21913636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21925636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21937636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21949636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21961636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21973636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21985636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 21997636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22009636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22021636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22033636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22045636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22057636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22117636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22129636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22141636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22153636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22165636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22177636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22189636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22201636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22213636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22225636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22237636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22249636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22261636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22273636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22285636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 22297636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 22993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23101636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23113636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23125636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23137636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23149636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23161636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23173636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23185636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23197636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23209636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23221636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23233636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23245636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23257636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23269636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23281636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23341636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23353636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23365636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23377636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23389636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23401636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23413636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23425636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23437636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23449636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23461636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23473636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23485636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23497636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23509636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23521636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23581636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23593636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23605636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23617636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23629636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23641636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23653636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23665636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23677636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23689636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23701636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23713636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23725636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23737636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23749636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 23761636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23869714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23869714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23881714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23881714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23893714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23893714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23905714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23905714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23917714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23917714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 23989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 23989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24121714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24121714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24133714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24133714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24145714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24145714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24157714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24157714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24169714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24169714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24373714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24373714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24385714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24385714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24397714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24397714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24409714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24409714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24565636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24577636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24589636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24601636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24613636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24613714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24613714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24625636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24625714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24625714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24637636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24637714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24637714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24649636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24649714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24649714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24661636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24673636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24685636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24697636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24709636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24721636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24733636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24745636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24805636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24817636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24829636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24841636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24853636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24853714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24853714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24865636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24865714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24865714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24877636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24877714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24877714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24889636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24889714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24889714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24901636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24913636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24925636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24937636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24949636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24961636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24973636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 24985636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 24985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 24985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25045636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25057636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25069636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25081636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25093636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25093714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25093714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25105636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25105714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25105714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25117636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25117714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25117714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25129636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25129714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25129714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25141636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25153636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25165636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25177636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25189636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25201636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25213636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 25225636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25585714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25585714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25585714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25597714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25597714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25597714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25837714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25837714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25837714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25849714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25849714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25849714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 25969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 25969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 25969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26029636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26041636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26053636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26065636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26077636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26077714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26077714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26077714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26089636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26089714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26089714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26089714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26101636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26113636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26125636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26137636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26149636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26161636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26173636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26185636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26197636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26209636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26269636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26281636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26293636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26305636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26317636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26317714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26317714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26317714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26329636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26329714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26329714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26329714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26341636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26353636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26365636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26377636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26389636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26401636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26413636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26425636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26437636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26449636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26509636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26521636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26533636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26545636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26557636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26557714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26557714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26557714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26569636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26569714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26569714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26569714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26581636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26593636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26605636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26617636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26629636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26641636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26653636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26665636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26677636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 26689636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26869714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26869714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26869714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26869714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26881714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26881714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26881714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26881714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26893714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26893714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26893714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26893714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26905714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26905714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26905714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26905714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26917714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26917714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26917714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26917714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 26929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 26929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 26929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 26929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27121714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27121714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27121714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27121714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27133714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27133714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27133714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27133714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27145714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27145714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27145714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27145714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27157714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27157714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27157714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27157714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27169714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27169714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27169714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27169714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27373714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27373714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27373714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27373714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27385714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27385714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27385714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27385714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27397714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27397714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27397714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27397714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27409714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27409714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27409714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27409714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27493636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27505636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27517636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27529636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27541636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27553636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27565636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27577636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27589636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27601636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27613636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27613714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27613714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27613714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27613714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27625636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27625714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27625714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27625714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27625714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27637636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27637714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27637714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27637714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27637714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27649636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27649714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27649714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27649714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27649714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27661636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27673636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27733636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27745636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27757636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27769636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27781636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27793636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27805636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27817636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27829636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27841636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27853636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27853714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27853714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27853714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27853714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27865636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27865714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27865714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27865714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27865714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27877636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27877714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27877714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27877714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27877714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27889636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27889714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27889714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27889714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27889714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27901636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27913636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27973636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27985636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 27997636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 27997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 27997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 27997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 27997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28009636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28021636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28033636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28045636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28057636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28069636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28081636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28093636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28093714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28093714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28093714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28093714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28105636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28105714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28105714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28105714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28105714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28117636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28117714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28117714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28117714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28117714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28129636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28129714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28129714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28129714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28129714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28141636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 28153636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28585714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28585714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28585714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28585714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28585714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28597714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28597714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28597714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28597714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28597714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28609714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28621714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28633714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28837714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28837714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28837714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28837714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28837714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28849714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28849714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28849714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28849714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28849714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28861714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28873714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28957636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28969636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28981636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28993636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 28993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 28993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29005636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29017636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29029636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29041636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29053636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29065636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29077636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29077714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29077714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29077714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29077714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29077714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29089636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29089714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29089714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29089714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29089714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29089714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29101636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29101714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29113636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29113714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29125636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29137636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29197636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29209636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29221636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29233636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29245636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29257636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29269636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29281636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29293636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29305636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29317636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29317714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29317714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29317714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29317714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29317714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29329636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29329714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29329714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29329714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29329714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29329714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29341636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29341714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29353636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29353714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29365636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29377636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29437636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29449636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29461636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29473636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29485636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29497636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29509636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29521636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29533636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29545636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29557636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29557714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29557714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29557714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29557714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29557714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29569636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29569714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29569714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29569714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29569714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29569714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29581636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29581714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29593636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29593714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29605636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29617636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29797714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29809714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 29989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 29989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30013714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30025714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30037714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30049714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30061714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30265714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30277714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30289714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30421636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30433636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30445636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30457636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30469636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30481636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30493636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30505636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30517636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30517714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30529636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30529714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30541636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30553636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30565636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30577636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30589636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30601636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30661636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30673636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30685636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30697636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30709636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30721636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30733636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30745636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30757636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30757714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30769636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30781636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30793636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30805636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30817636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30829636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30841636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30901636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30913636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30925636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30937636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30949636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30961636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30973636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30985636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30997636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 30997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 30997714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31009636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31009714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31021636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31021714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31033636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31033714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31045636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31057636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31069636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31081636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31477714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31489714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31501714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31513714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31525714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31537714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31549714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31561714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31573714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31645714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31657714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31669714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31681714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31693714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31801714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31813714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31825714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31885636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31885714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31897636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31897714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31909636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31909714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31921636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31921714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31933636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31933714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31945636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31945714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31957636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31957714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31969636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31969714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31981636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31981714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31993636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 31993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 31993714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32005636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32005714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32017636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32017714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32029636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32029714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32041636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32041714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32053636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32053714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32065636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32065714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32125636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32125714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32137636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32137714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32149636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32149714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32161636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32161714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32173636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32185636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32197636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32209636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32221636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32233636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32245636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32257636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32269636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32269714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32281636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32281714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32293636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32293714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32305636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32305714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32365636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32365714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32377636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32377714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32389636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32389714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32401636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32401714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32413636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32413714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32425636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32425714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32437636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32437714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32449636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32449714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32461636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32461714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32473636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32473714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32485636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32485714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32497636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32497714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32509636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32509714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32521636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32521714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32533636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32533714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32545636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32545714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32605714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32617714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32629714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32737714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32749714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32761714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32773714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 32785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 32785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 32785714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 100) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 101) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 102) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 105) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 107) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 108) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 109) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 110) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 112) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 113) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 114) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 115) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 117) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 118) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 120) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 122) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 125) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 127) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 128) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 129) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 130) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 132) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 133) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 135) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 137) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 138) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 140) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 142) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 143) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 147) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 148) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 152) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 153) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 155) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 156) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 157) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 158) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 160) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 161) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 162) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 163) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 167) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 168) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 171) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 172) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 173) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 175) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 176) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 177) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 178) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 180) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 181) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 182) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 183) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 186) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 187) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 188) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 189) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 191) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 195) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 196) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 198) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 199) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 100) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 101) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 102) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 105) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 107) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 108) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 109) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 110) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 112) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 113) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 114) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 115) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 117) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 118) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 120) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 122) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 125) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 127) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 128) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 129) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 130) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 132) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 133) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 135) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 137) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 138) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 140) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 143) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 145) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 148) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 150) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 153) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 155) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 156) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 157) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 158) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 160) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 161) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 162) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 163) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 165) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 167) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 168) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 170) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 171) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 172) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 173) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 175) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 176) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 177) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 178) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 180) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 181) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 183) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 185) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 186) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 187) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 188) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 189) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 190) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 191) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 193) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 195) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 196) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 198) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 199) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 600) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] WR @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> +[ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] WR @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] RD @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> +[ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] RD @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 147120 ns +Time Done: 176928 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 177024000.0 ps +[ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] WR @ (1, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 0) -> +[ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> [ 3000 ps] WR @ (5, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] WR @ (6, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 968) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] RD @ (0, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> +[ 3000 ps] RD @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] RD @ (2, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (5, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (6, 0) -> [ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> +[ 3000 ps] RD @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] RD @ (7, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 176928 ns +Time Done: 206244 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32767) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 206340000.0 ps +[ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32767) -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 40) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 32767) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 32767) -> [ 3000 ps] WR @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 32767) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 32767) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 32767) -> [ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 32767) -> +[ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (6, 32767) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 32767) -> [ 3000 ps] WR @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 32768) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32768) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32767) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32767) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 32767) -> [ 3000 ps] RD @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (2, 32767) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 32767) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 32767) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 32767) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 32767) -> +[ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 32767) -> [ 3000 ps] RD @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32767) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 32768) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32768) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 206244 ns +Time Done: 236064 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2852) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1773) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 236160000.0 ps +[ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65150) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 694) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61913) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62992) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59754) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60834) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56517) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57596) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54358) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55438) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52200) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48962) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50042) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47883) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45725) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43566) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44646) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42487) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40329) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38170) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39250) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37091) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34933) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36012) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32774) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33854) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30616) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31695) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27378) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28458) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25220) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26299) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21982) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23062) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19824) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20903) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18745) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16586) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17666) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14428) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15507) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13349) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12270) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9032) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5794) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6874) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3636) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4715) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2557) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 398) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1478) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63776) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64855) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61617) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62697) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60538) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58380) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59459) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56221) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57301) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55142) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52984) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54063) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50825) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51905) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49746) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47588) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48667) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45429) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46509) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42192) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43271) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40033) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41113) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36796) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37875) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34637) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35717) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33558) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31400) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32479) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30321) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29241) -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27083) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28162) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26004) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23845) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24925) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21687) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22766) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18449) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19529) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16291) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17370) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13053) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14133) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 10895) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11974) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9816) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7657) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8737) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5499) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6578) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4420) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2261) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3341) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64560) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63481) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60243) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61322) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58084) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57005) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54847) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55926) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52688) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51609) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49451) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50530) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47292) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48372) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44055) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45134) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41896) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42976) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40817) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38659) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39738) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36500) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37580) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35421) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33263) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34342) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31104) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30025) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27867) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28946) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25708) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26788) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23550) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24629) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20312) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21392) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18154) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19233) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17075) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 14916) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15996) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12758) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13837) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11679) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9520) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10600) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7362) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8441) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6283) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5204) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 1966) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3045) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 887) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64264) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62106) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58868) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59948) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56710) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57789) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54551) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55631) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51314) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52393) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49155) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50235) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48076) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45918) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46997) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43759) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44839) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42680) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40522) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41601) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38363) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39443) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37284) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35126) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36205) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32967) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34047) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31888) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29730) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30809) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27571) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28651) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26492) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25413) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22175) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23255) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20017) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21096) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18938) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16779) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17859) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14621) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15700) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13542) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11383) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12463) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9225) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10304) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5987) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7067) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4908) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3829) -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 591) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1671) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63969) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65048) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62890) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60731) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61811) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58573) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59652) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57494) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55335) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56415) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53177) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54256) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51018) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47781) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48860) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45622) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44543) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42385) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43464) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40226) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41306) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36989) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38068) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34830) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35910) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33751) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31593) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32672) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29434) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30514) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28355) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27276) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24038) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22959) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20801) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21880) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18642) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19722) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16484) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17563) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15405) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13246) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14326) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11088) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12167) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7850) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8930) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5692) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6771) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4613) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2454) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3534) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 296) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1375) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64753) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62594) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63674) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60436) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61515) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59357) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57198) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58278) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55040) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51802) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52882) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49644) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50723) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47485) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48565) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46406) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 616) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44248) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45327) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 42089) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43169) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41010) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39931) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36693) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37773) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35614) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33456) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34535) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31297) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32377) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30218) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28060) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25901) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26981) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24822) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22664) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23743) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20505) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21585) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19426) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 592) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17268) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18347) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15109) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16189) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12951) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14030) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11872) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9713) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10793) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7555) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8634) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6476) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4317) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5397) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2159) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3238) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64457) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62299) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63378) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59061) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60141) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56903) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57982) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53665) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54745) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51507) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52586) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50428) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48269) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46111) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45032) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43952) -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42873) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40715) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41794) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38556) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39636) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37477) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35319) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36398) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33160) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34240) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32081) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 536) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29923) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31002) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27764) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28844) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26685) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24527) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25606) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22368) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23448) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21289) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20210) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 16972) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18052) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15893) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13735) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14814) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11576) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12656) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9418) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10497) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6180) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7260) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 4022) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5101) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2943) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 784) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1864) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64162) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65241) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63083) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60924) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58766) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59845) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57687) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55528) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53370) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54449) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52291) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50132) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47974) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49053) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46895) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44736) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45816) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42578) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43657) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40419) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41499) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39340) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 480) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38261) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 35023) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33944) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31786) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32865) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29627) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30707) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28548) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26390) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27469) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24231) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25311) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20994) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22073) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18835) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19915) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17756) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15598) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16677) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13439) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14519) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12360) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 456) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10202) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11281) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8043) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5885) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6964) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4806) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2647) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3727) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 489) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1568) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64946) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62787) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63867) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60629) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61708) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59550) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57391) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55233) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56312) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51995) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53075) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49837) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50916) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48758) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46599) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47679) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44441) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45520) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43362) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41203) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42283) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39045) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36886) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37966) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35807) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33649) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34728) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31490) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32570) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30411) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28253) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29332) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26094) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25015) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22857) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23936) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20698) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21778) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19619) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 17461) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18540) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15302) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16382) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14223) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12065) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 9906) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10986) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8827) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6669) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7748) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4510) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5590) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2352) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3431) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1273) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64650) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 62492) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63571) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61413) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59254) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60334) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57096) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58175) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56017) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53858) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51700) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52779) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50621) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48462) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49542) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46304) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47383) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45225) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43066) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40908) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41987) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39829) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37670) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38750) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35512) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36591) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33353) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34433) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32274) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 344) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31195) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27957) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29037) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26878) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24720) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25799) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22561) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23641) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21482) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19324) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20403) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17165) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18245) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16086) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13928) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15007) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11769) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12849) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10690) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8532) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9611) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6373) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7453) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5294) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 320) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4215) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 977) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2057) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64355) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65434) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63276) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61117) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58959) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60038) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57880) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55721) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53563) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54642) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52484) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50325) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51405) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48167) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49246) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47088) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44929) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46009) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42771) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43850) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41692) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39533) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40613) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37375) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38454) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36296) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34137) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35217) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31979) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33058) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29820) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30900) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28741) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26583) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27662) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24424) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25504) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23345) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21187) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22266) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19028) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20108) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17949) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15791) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16870) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13632) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14712) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12553) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 264) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10395) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11474) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8236) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9316) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7157) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4999) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6078) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 2840) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3920) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1761) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 682) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 62980) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64060) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60822) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61901) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59743) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 57584) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58664) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 55426) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56505) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54347) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52188) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53268) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50030) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51109) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48951) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46792) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47872) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44634) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45713) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43555) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41396) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42476) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39238) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40317) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36000) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33842) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34921) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32763) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30604) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31684) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28446) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29525) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26287) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27367) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25208) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 216) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23050) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24129) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20891) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21971) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19812) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17654) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18733) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15495) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16575) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14416) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12258) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13337) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10099) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9020) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6862) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7941) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4703) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5783) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3624) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1466) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2545) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64843) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 387) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63764) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 184) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61606) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62685) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59447) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60527) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57289) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58368) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56210) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54051) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51893) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52972) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50814) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48655) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49735) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46497) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47576) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45418) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43259) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 41101) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42180) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40022) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37863) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38943) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35705) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36784) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34626) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32467) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33547) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30309) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31388) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29230) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 24913) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25992) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22754) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23834) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21675) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19517) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20596) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17358) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18438) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14121) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15200) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11962) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13042) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10883) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8725) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9804) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6566) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7646) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3329) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4408) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1170) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2250) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 91) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63469) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64548) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61310) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62390) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60231) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58073) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 55914) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56994) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53756) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54835) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52677) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50518) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51598) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48360) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49439) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47281) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45122) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46202) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42964) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44043) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41885) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39726) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40806) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37568) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38647) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36489) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35410) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34330) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 32172) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33251) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31093) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28934) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30014) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26776) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27855) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25697) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23538) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24618) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21380) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22459) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19221) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20301) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18142) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15984) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17063) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13825) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14905) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 12746) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10588) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11667) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8429) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9509) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5192) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6271) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3033) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4113) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 64) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 65332) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 875) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63173) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64253) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62094) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59936) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61015) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57777) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58857) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56698) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54540) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55619) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52381) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53461) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50223) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51302) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46985) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48065) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44827) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45906) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43748) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41589) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42669) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39431) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40510) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38352) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37273) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34035) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35114) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32956) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30797) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31877) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28639) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29718) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27560) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26481) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23243) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24322) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20005) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21085) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17847) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18926) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15688) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14609) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12451) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13530) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10292) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11372) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 8) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7055) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8134) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4896) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5976) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3817) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1659) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2738) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 580) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 65036) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62879) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 63957) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61799) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 62878) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 61799) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60720) -> [ 3000 ps] WR @ (3, 1016) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59641) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 60720) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 59640) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58562) -> [ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57483) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 58561) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56403) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57482) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 56403) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55324) -> [ 3000 ps] WR @ (3, 1008) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54245) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 55324) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 54244) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53166) -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 52087) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 53165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51007) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 52086) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 51007) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49928) -> +[ 3000 ps] WR @ (3, 1008) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48849) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 49928) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 48848) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47770) -> [ 3000 ps] WR @ (7, 1000) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46690) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 47769) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 46690) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45611) -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 44532) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 45611) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43453) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 44532) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 43452) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42374) -> +[ 3000 ps] WR @ (7, 1000) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41294) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 42373) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 41294) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40215) -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 39136) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 40215) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38057) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 39136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 992) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 38056) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36978) -> [ 3000 ps] WR @ (7, 992) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35898) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 36977) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 35898) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34819) -> +[ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33740) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 34819) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32660) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33740) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 30502) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 31581) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 29423) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 984) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 27264) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 28344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 25106) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 26185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 24027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 21868) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 22948) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 19710) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 20789) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18631) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 976) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 16472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 17552) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 15393) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 14314) -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 12155) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 13235) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 11076) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 8918) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 9997) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 6759) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 7839) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 5680) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 3522) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 4601) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 1363) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 2443) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 284) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 63662) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 64741) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 61503) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 62583) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 60424) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 952) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 58266) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 59345) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 56107) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 57187) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 55028) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 52870) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 53949) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 50711) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 51791) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 49632) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 47474) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 48553) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 45315) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 46395) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 43157) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 44236) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 42078) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 39919) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 40999) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 37761) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 38840) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 36682) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 34523) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 35603) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 32365) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 33444) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 31286) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 920) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 29127) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 30207) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 26969) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 28048) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 25890) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 23731) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 24811) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 21573) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 22652) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 20494) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 18335) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 19415) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 16177) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 17256) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 15098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 12939) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 14019) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 10781) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 11860) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 8622) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 9702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 7543) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 5385) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 6464) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 3226) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 4306) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 2147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 65525) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 1068) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 63366) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 64446) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 62287) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 60129) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 61208) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 57970) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 59050) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 56891) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 54733) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 55812) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 52574) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 53654) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 51495) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 49337) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 50416) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 47178) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 48258) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 46099) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 43941) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 45020) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 41782) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 42862) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 39624) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 40703) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 38545) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 864) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 36386) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 37466) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 34228) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 35307) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33149) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 30990) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 32070) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 28832) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 29911) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 27753) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 25594) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 26674) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 23436) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 24515) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 22357) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 20198) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 21278) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 18040) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 19119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 16961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 14802) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 15882) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 12644) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 13723) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 11565) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 840) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 9406) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 10486) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 7248) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 8327) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 5089) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 6169) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 4010) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 1852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 2931) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 65229) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 773) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 64150) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 61992) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 63071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 59833) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 60913) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 58754) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 56596) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57675) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 55517) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 54437) -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 53358) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 816) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 51200) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 52279) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 49041) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 50121) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 47962) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 45804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 46883) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 43645) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 44725) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 42566) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 40408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 41487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 38249) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 39329) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 36091) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 37170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 35012) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32853) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33933) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 30695) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 31774) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 29616) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 27457) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 28537) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 25299) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 26378) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 24220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 784) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 22061) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 23141) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 19903) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 20982) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18824) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 16665) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 17745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 14507) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 15586) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 13428) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 11269) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 12349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 9111) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 10190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 8032) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 5873) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 6953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 2852) -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1773) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 65150) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 694) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64071) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61913) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62992) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60834) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59754) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56517) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57596) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 55438) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54358) -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51121) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52200) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50042) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48962) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47883) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45725) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44646) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43566) -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40329) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41408) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39250) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38170) -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37091) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34933) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36012) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33854) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32774) -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30616) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31695) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29537) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27378) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28458) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26299) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25220) -> [ 3000 ps] RD @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21982) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23062) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20903) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 19824) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18745) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16586) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17666) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15507) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14428) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11190) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12270) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10111) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9032) -> +[ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 5794) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6874) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4715) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3636) -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2557) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 398) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1478) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64855) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63776) -> [ 3000 ps] RD @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61617) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62697) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60538) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58380) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59459) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57301) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56221) -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52984) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54063) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51905) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50825) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49746) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47588) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48667) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46509) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45429) -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42192) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43271) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41113) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40033) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38954) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36796) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37875) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35717) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34637) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33558) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31400) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32479) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30321) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29241) -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27083) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28162) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23845) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24925) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22766) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21687) -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20608) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18449) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19529) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 17370) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16291) -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13053) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14133) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11974) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10895) -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9816) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7657) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8737) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6578) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5499) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4420) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2261) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3341) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1182) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64560) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62401) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63481) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61322) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60243) -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58084) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59164) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57005) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54847) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55926) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53768) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52688) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51609) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49451) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50530) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48372) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47292) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44055) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42976) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41896) -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40817) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38659) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39738) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37580) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36500) -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35421) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33263) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34342) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32184) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31104) -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30025) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27867) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28946) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26788) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25708) -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23550) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24629) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20312) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21392) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19233) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18154) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17075) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14916) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15996) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13837) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12758) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11679) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9520) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10600) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8441) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7362) -> +[ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6283) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4124) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5204) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3045) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1966) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 887) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64264) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63185) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62106) -> [ 3000 ps] RD @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58868) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59948) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57789) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56710) -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54551) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55631) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51314) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52393) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50235) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49155) -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48076) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45918) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46997) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44839) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43759) -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42680) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40522) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41601) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39443) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38363) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37284) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35126) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36205) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34047) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32967) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31888) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29730) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30809) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28651) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27571) -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26492) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24334) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25413) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23255) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22175) -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20017) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21096) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18938) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16779) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17859) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15700) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14621) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13542) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11383) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12463) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10304) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9225) -> +[ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 5987) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7067) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4908) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3829) -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2750) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 591) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1671) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 65048) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63969) -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62890) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60731) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61811) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59652) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58573) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57494) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55335) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56415) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54256) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53177) -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51018) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49939) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47781) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48860) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46702) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45622) -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44543) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42385) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43464) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41306) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40226) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39147) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36989) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38068) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35910) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34830) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33751) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31593) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32672) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30514) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29434) -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28355) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26197) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27276) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25118) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24038) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22959) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20801) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21880) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19722) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18642) -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16484) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17563) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15405) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13246) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14326) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 12167) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11088) -> +[ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7850) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8930) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6771) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5692) -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4613) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2454) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3534) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1375) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 296) -> [ 3000 ps] RD @ (4, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64753) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62594) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63674) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61515) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60436) -> [ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59357) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57198) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58278) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56119) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55040) -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51802) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52882) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50723) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49644) -> +[ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47485) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48565) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46406) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44248) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45327) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 43169) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42089) -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41010) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38852) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39931) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37773) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36693) -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35614) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33456) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34535) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32377) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31297) -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30218) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28060) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26981) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25901) -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24822) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22664) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23743) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21585) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20505) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19426) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17268) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18347) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16189) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15109) -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12951) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14030) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11872) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9713) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10793) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8634) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7555) -> +[ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6476) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4317) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5397) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3238) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2159) -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1080) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64457) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63378) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62299) -> [ 3000 ps] RD @ (4, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59061) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60141) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57982) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56903) -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55824) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53665) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52586) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51507) -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50428) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48269) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49349) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47190) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46111) -> +[ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43952) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45032) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42873) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40715) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41794) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39636) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38556) -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37477) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35319) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36398) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34240) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33160) -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32081) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29923) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31002) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28844) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27764) -> +[ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26685) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 536) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24527) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25606) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23448) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22368) -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21289) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19131) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20210) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18052) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16972) -> [ 3000 ps] RD @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15893) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13735) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14814) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12656) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11576) -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9418) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10497) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6180) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7260) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5101) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4022) -> [ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2943) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 784) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1864) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 65241) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64162) -> [ 3000 ps] RD @ (4, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63083) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60924) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62004) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59845) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58766) -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57687) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55528) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54449) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53370) -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52291) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50132) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51212) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49053) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47974) -> +[ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46895) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44736) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45816) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43657) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42578) -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40419) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 41499) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39340) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37182) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38261) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36103) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35023) -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33944) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31786) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32865) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30707) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29627) -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28548) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26390) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27469) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25311) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24231) -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23152) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20994) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22073) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19915) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18835) -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17756) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15598) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16677) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14519) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13439) -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12360) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10202) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11281) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9123) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8043) -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5885) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6964) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4806) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2647) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3727) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1568) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 489) -> [ 3000 ps] RD @ (4, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64946) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62787) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63867) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61708) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60629) -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59550) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57391) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56312) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55233) -> [ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51995) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53075) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50916) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49837) -> +[ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48758) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46599) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47679) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45520) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44441) -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43362) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41203) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42283) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40124) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39045) -> [ 3000 ps] RD @ (4, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36886) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37966) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35807) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33649) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34728) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32570) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31490) -> +[ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30411) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28253) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29332) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27174) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26094) -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25015) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22857) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23936) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21778) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20698) -> [ 3000 ps] RD @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19619) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17461) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18540) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16382) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15302) -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14223) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12065) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10986) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9906) -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8827) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6669) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7748) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5590) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4510) -> +[ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2352) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3431) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1273) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64650) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63571) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62492) -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61413) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59254) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58175) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57096) -> +[ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56017) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53858) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52779) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51700) -> [ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50621) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48462) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49542) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47383) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46304) -> [ 3000 ps] RD @ (4, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45225) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43066) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44146) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41987) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40908) -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39829) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37670) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36591) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35512) -> [ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33353) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34433) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32274) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30116) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31195) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 29037) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27957) -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26878) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24720) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25799) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23641) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22561) -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21482) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19324) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20403) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18245) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17165) -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16086) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13928) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15007) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12849) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11769) -> +[ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10690) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8532) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9611) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7453) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6373) -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5294) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3136) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4215) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2057) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 977) -> [ 3000 ps] RD @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64355) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65434) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63276) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61117) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62197) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60038) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58959) -> +[ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57880) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55721) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54642) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53563) -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52484) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50325) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51405) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49246) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48167) -> [ 3000 ps] RD @ (4, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47088) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44929) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46009) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43850) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42771) -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41692) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39533) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40613) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38454) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37375) -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36296) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34137) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35217) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33058) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31979) -> +[ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29820) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30900) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28741) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26583) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27662) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25504) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24424) -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23345) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21187) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22266) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20108) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19028) -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 17949) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15791) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16870) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14712) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13632) -> +[ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12553) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10395) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11474) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9316) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8236) -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7157) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4999) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6078) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 3920) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2840) -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1761) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65139) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 682) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64060) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62980) -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60822) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61901) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59743) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57584) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58664) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56505) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55426) -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54347) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52188) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53268) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51109) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50030) -> [ 3000 ps] RD @ (4, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48951) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46792) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47872) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45713) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44634) -> [ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43555) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41396) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42476) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40317) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39238) -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36000) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37080) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34921) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33842) -> +[ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32763) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30604) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31684) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29525) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28446) -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26287) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27367) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25208) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23050) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24129) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21971) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20891) -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19812) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17654) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18733) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16575) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15495) -> +[ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14416) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12258) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13337) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11179) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10099) -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9020) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6862) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7941) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5783) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4703) -> [ 3000 ps] RD @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3624) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1466) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2545) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 387) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64843) -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63764) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61606) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62685) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60527) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59447) -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57289) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58368) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56210) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54051) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52972) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51893) -> [ 3000 ps] RD @ (4, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50814) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48655) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49735) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47576) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 46497) -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45418) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43259) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42180) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41101) -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40022) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37863) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38943) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36784) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35705) -> +[ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34626) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32467) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 33547) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31388) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30309) -> [ 3000 ps] RD @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29230) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27071) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28151) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25992) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24913) -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22754) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23834) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 19517) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20596) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18438) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17358) -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16279) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14121) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15200) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 13042) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11962) -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10883) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8725) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9804) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7646) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6566) -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5487) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3329) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2250) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1170) -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 91) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63469) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64548) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 62390) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61310) -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60231) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 120) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58073) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56994) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55914) -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53756) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54835) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52677) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50518) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51598) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49439) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48360) -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47281) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45122) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46202) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 44043) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42964) -> +[ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41885) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39726) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40806) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38647) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37568) -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36489) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34330) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35410) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33251) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32172) -> [ 3000 ps] RD @ (4, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31093) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28934) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30014) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27855) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26776) -> [ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25697) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23538) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24618) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22459) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21380) -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19221) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20301) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18142) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15984) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17063) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14905) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13825) -> [ 3000 ps] RD @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12746) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10588) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11667) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9509) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8429) -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7350) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5192) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6271) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 4113) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3033) -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65332) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 875) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64253) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63173) -> +[ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62094) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 56) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59936) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61015) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58857) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57777) -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56698) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54540) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55619) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53461) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52381) -> [ 3000 ps] RD @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50223) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51302) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46985) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48065) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45906) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44827) -> +[ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43748) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41589) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42669) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40510) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39431) -> [ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38352) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36193) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37273) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 35114) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34035) -> [ 3000 ps] RD @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32956) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30797) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31877) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29718) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28639) -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27560) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25401) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26481) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24322) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23243) -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20005) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21085) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 18926) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17847) -> +[ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15688) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16768) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14609) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12451) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13530) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11372) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 10292) -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9213) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7055) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5976) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4896) -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 3817) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1659) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2738) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 580) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 65036) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62879) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 63957) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61799) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 62878) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 61799) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60720) -> [ 3000 ps] RD @ (3, 1016) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59641) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 60720) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 59640) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58562) -> [ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 58561) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57483) -> [ 3000 ps] RD @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56403) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57482) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 56403) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55324) -> [ 3000 ps] RD @ (3, 1008) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54245) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 55324) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 54244) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53166) -> +[ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 53165) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52087) -> [ 3000 ps] RD @ (7, 1008) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51007) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 52086) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 51007) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49928) -> +[ 3000 ps] RD @ (3, 1008) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48849) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 49928) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 48848) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47770) -> [ 3000 ps] RD @ (7, 1000) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46690) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 47769) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1000) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 46690) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45611) -> [ 3000 ps] RD @ (3, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 45611) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44532) -> [ 3000 ps] RD @ (3, 1000) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43453) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 44532) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 1000) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 43452) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42374) -> [ 3000 ps] RD @ (7, 1000) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41294) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 42373) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 41294) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40215) -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 40215) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39136) -> [ 3000 ps] RD @ (3, 992) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38057) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 39136) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 38056) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36978) -> [ 3000 ps] RD @ (7, 992) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35898) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 36977) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 35898) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34819) -> [ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 34819) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33740) -> [ 3000 ps] RD @ (3, 992) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32660) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33740) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 31581) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 30502) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 29423) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 27264) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 28344) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 26185) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 25106) -> +[ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 24027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 21868) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 22948) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 20789) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 19710) -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18631) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 16472) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 17552) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 15393) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 14314) -> [ 3000 ps] RD @ (7, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 13235) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 12155) -> [ 3000 ps] RD @ (3, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 11076) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 8918) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 9997) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 7839) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 6759) -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 5680) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 3522) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 4601) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 2443) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 1363) -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 284) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 63662) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 64741) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 62583) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 61503) -> +[ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 60424) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 952) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 58266) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 59345) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 57187) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 56107) -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 55028) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 52870) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 53949) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 51791) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 50711) -> [ 3000 ps] RD @ (3, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 49632) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 47474) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 48553) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 46395) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 45315) -> [ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 43157) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 44236) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 42078) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 39919) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 40999) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 38840) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 37761) -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 36682) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 34523) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 35603) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 33444) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 32365) -> [ 3000 ps] RD @ (7, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 31286) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 29127) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 30207) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 28048) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 26969) -> [ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 25890) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 23731) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 24811) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 22652) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 21573) -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 20494) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 18335) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 19415) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 17256) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 16177) -> +[ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 15098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 904) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 12939) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 14019) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 11860) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 10781) -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 8622) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 9702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 7543) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 5385) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 6464) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 4306) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 3226) -> [ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 2147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 65525) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 1068) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 64446) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 63366) -> +[ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 62287) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 60129) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 61208) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 59050) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57970) -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 56891) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 54733) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 55812) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 53654) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 52574) -> [ 3000 ps] RD @ (3, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 51495) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 49337) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 50416) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 48258) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 47178) -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 46099) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 43941) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 45020) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 42862) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 41782) -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 39624) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 40703) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 38545) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 36386) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 37466) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 35307) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 34228) -> [ 3000 ps] RD @ (7, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 30990) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 32070) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 29911) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 28832) -> [ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 27753) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 25594) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 26674) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 24515) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 23436) -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 22357) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 20198) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 21278) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 19119) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18040) -> +[ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 16961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 848) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 14802) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 15882) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 13723) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 12644) -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 11565) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 9406) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 10486) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 8327) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 7248) -> [ 3000 ps] RD @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 5089) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 6169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 4010) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 1852) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 2931) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 773) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 65229) -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 64150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 61992) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 63071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 60913) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 59833) -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 58754) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 56596) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 55517) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 54437) -> [ 3000 ps] RD @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 53358) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 51200) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 52279) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 50121) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 49041) -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 47962) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 45804) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 46883) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 44725) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 43645) -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 42566) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 40408) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 41487) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 39329) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 38249) -> +[ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 36091) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 37170) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 35012) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32853) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33933) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 31774) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 30695) -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 29616) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 27457) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 28537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 26378) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 25299) -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 24220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 22061) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 23141) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 20982) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 19903) -> +[ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 784) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 16665) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 17745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 15586) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 14507) -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 13428) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 11269) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 12349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 10190) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 9111) -> [ 3000 ps] RD @ (7, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 8032) -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 236064 ns +Time Done: 349380 ns +Average Rate: 49 ns/request +-------------------------------- + + +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 5873) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 6953) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 349524000.0 ps +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 351848 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:19 ; elapsed = 00:27:24 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1341 ; free virtual = 10593 +## quit +INFO: xsimkernel Simulation Memory Usage: 229388 KB (Peak: 287184 KB), Simulation CPU Usage: 1640660 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 20:23:19 2025... diff --git a/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_eight_lanes_bus_delay_1.log b/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_eight_lanes_bus_delay_1.log new file mode 100644 index 0000000..71ba6a2 --- /dev/null +++ b/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_eight_lanes_bus_delay_1.log @@ -0,0 +1,24817 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_controller.v" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_controller +INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_phy +INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_top.v" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_top +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module glbl +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:264] +WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:251] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=1... +Compiling module xil_defaultlib.ddr3_top(ROW_BITS=16,BYTE_LANES=... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=50) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=100) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=150) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=200) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=250) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=300) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=350) +Compiling module xil_defaultlib.ddr3_module_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 57 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 512 +wb_sel_bits = 64 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 3 +WRITE_SLOT = 3 +ACTIVATE_SLOT = 2 +PRECHARGE_SLOT = 0 +REMAINING_SLOT = 1 + +DELAYS: +----------------------------- +CL = 5 +CWL = 5 +PRECHARGE_TO_ACTIVATE_DELAY = 0 +ACTIVATE_TO_WRITE_DELAY = 0 +ACTIVATE_TO_READ_DELAY = 0 +ACTIVATE_TO_PRECHARGE_DELAY = 3 +ACTIVATE_TO_ACTIVATE_DELAY = 0 +READ_TO_WRITE_DELAY = 1 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 6 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U1R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [121036 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U1R1.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R1.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R1.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R1.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R1.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R1.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R1.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R1.reset at time 540200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 540250.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 540300.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 540350.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 540400.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 540450.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 540500.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 540550.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1561736.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1561786.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1561836.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1561886.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1561936.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1561986.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1562036.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1562086.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1933736.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1933786.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1933836.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1933886.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1933936.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1933986.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1934036.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1934086.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] ZQC -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154093736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154105736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154117736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154129736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154141736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154153736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154165736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154177736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154189736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154201736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154213736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154225736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154237736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154249736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154261736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154273736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154333736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154345736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154357736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154369736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154381736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154393736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154405736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154417736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154429736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154441736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154453736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154465736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154477736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154489736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154501736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154513736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154573736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154585736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154597736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154609736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154621736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154633736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154645736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154657736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154669736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154681736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154693736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154705736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154717736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154729736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154741736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 154753736.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154861814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154873814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154885814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154897814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154933814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154945814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154957814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154969814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 154993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155101814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155113814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155125814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155137814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155173814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155185814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155197814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155209814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155221814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155341814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155353814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155365814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155377814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155413814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155425814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155437814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155449814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155461814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155473814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155581814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155593814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155605814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155617814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155653814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155665814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155677814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155689814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155701814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155713814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155797786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155809786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155821786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155821814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155833786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155833814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155845786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155845814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155857786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155857814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155869786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155869814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155881786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155893786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155893814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155905786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155905814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155917786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155917814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155929786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155929814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155941786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155941814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155953786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155953814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155965786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 155977786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 155977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156037786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156049786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156061786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156073786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156073814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156085786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156085814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156097786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156097814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156109786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156109814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156121786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156121814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156133786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156133814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156145786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156145814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156157786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156157814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156169786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156169814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156181786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156181814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156193786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156193814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156205786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 156217786.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156325814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156325814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156337814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156337814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156349814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156349814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156361814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156361814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156373814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156373814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156385814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156385814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156397814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156397814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156409814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156409814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156421814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156421814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156433814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156433814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156565814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156565814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156637814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156637814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156649814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156649814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156661814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156661814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156673814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156673814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156685814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156685814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156697814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156697814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156709814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156709814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156781814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156781814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156793814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156793814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156805814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156805814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156817814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156817814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156829814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156829814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156841814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156841814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156853814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156853814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156865814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156865814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156877814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156877814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156889814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156889814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156901814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156901814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156913814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156913814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156925814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156925814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156937814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156937814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156949814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156949814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 156961814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 156961814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157021814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157021814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157033814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157033814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157045814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157045814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157057814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157057814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157069814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157069814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157081814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157081814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157129814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157129814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157141814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157141814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157153814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157153814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157165814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157165814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157177814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157177814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157189814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157189814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157201814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157201814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157261814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157261814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157273814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157273814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157285814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157285814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157297814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157297814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157309814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157309814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157321814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157321814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157333814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157333814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157345814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157345814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157357814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157357814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157369814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157369814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157381814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157381814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157393814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157393814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157405814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157405814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157417814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157417814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157429814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157429814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157441814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157441814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157501836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157513814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157513814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157513836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157525814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157525814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157525836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157537814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157537814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157537836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157549814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157549814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157549836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157561814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157561814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157561836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157573836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157585836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157597836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157609836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157621814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157621814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157621836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157633814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157633814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157633836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157645814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157645814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157645836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157657814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157657814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157657836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157669814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157669814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157669836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157681814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157681814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157681836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157741814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157741814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157741836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157753814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157753814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157753836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157765814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157765814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157765836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157777814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157777814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157777836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157789814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157789814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157789836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157801814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157801814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157801836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157813836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157825836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157837836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157849836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157861814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157861814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157861836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157873814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157873814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157873836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157885814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157885814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157885836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157897814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157897814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157897836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157909836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 157921836.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 157981892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 157993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 157993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 157993892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158005814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158005814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158005892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158017814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158017814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158017892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158029814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158029814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158029892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158041814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158041814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158041892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158053814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158053814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158053892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158065892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158077892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158089892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158101814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158101814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158101892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158113814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158113814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158113892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158125814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158125814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158125892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158137814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158137814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158137892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158149892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158161892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158233892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158245892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158257814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158257814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158257892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158269814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158269814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158269892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158281814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158281814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158281892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158293814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158293814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158293892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158305814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158305814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158305892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158317892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158329892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158341814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158341814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158341892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158353814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158353814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158353892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158365814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158365814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158365892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158377814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158377814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158377892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158389892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158401892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158413814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158413814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158413892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158485892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158497892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158509814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158509814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158509892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158521814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158521814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158521892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158533814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158533814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158533892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158545814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158545814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158545892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158557892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158569892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158581814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158581814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158581892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158593814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158593814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158593892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158605814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158605814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158605892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158617814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158617814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158617892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158629892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158641892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158653814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158653814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158653892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158665814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158665814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158665892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158725892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158737892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158749814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158749814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158749892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158761814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158761814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158761892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158773814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158773814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158773892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158785814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158785814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158785892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158797892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158809892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158821814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158821814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158821892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158833814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158833814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158833892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158845814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158845814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158845892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158857814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158857814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158857892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158869814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158869814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158869892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158881892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158893814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158893814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158893892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158905814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158905814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158905892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158965892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158977892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 158989814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 158989814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 158989892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159001814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159001814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159001892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159013814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159013814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159013892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159025814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159025814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159025892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159037892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159049892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159061892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159073814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159073814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159073892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159085814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159085814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159085892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159097814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159097814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159097892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159109814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159109814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159109892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159121814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159121814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159121892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159133814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159133814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159133892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159145814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159145814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159145892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159205886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159205892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159217886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159217892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159229814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159229814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159229886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159229892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159241814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159241814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159241886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159241892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159253814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159253814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159253886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159253892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159265814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159265814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159265886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159265892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159277886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159277892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159289886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159289892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159301886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159301892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159313886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159313892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159325814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159325814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159325886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159325892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159337814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159337814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159337886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159337892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159349814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159349814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159349886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159349892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159361814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159361814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159361886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159361892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159373814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159373814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159373886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159373892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159385814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159385814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159385886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159385892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159445886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159445892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159457886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159457892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159469814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159469814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159469886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159469892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159481814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159481814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159481886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159481892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159493814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159493814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159493886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159493892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159505814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159505814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159505886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159505892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159517814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159517814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159517886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159517892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159529886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159529892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159541886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159541892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159553886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159553892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159565814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159565814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159565886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159565892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159577886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159577892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159589886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159589892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159601886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159601892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159613886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159613892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 159625886.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159625892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159685814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159685814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159685892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159685892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159697814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159697814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159697892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159697892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159709814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159709814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159709892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159709892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159721814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159721814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159721892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159721892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159733814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159733814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159733892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159733892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159745814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159745814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159745892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159745892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159757814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159757814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159757892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159757892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159769814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159769814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159769892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159769892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159781814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159781814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159781892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159781892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159793814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159793814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159793892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159793892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159805814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159805814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159805892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159805892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159817814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159817814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159817892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159817892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159829814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159829814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159829892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159829892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159841814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159841814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159841892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159841892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159853814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159853814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159853892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159853892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159865814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159865814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159865892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159865892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159937814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159937814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159937892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159937892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159949814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159949814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159949892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159949892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159961814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159961814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159961892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159961892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159973814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159973814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159973892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159973892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159985814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159985814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159985892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159985892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 159997814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 159997814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 159997892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 159997892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160009814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160009814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160009892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160009892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160021814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160021814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160021892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160021892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160033814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160033814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160033892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160033892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160045814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160045814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160045892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160045892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160057814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160057814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160057892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160057892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160069814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160069814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160069892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160069892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160081814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160081814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160081892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160081892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160093892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160093892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160105892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160105892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160117892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160117892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160189814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160189814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160189892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160189892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160201814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160201814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160201892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160201892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160213814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160213814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160213892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160213892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160225814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160225814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160225892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160225892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160237814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160237814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160237892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160237892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160249814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160249814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160249892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160249892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160261814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160261814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160261892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160261892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160273814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160273814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160273892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160273892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160285814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160285814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160285892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160285892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160297814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160297814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160297892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160297892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160309814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160309814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160309892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160309892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160321814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160321814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160321892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160321892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160333814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160333814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160333892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160333892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160345814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160345814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160345892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160345892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160357814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160357814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160357892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160357892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160369814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160369814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160369892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160369892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160429814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160429814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160429892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160429892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160441814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160441814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160441892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160441892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160453814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160453814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160453892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160453892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160465814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160465814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160465892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160465892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160477814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160477814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160477892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160477892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160489814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160489814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160489892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160489892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160501892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160501892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160513814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160513814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160513892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160513892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160525814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160525814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160525892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160525892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160537814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160537814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160537892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160537892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160549814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160549814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160549892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160549892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160561814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160561814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160561892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160561892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160573892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160573892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160585892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160585892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160597892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160597892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160609892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160609892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160669814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160669814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160669892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160669892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160681814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160681814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160681892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160681892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160693814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160693814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160693892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160693892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160705814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160705814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160705892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160705892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160717814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160717814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160717892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160717892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160729814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160729814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160729892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160729892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160741814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160741814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160741892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160741892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160753814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160753814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160753892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160753892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160765814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160765814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160765892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160765892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160777814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160777814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160777892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160777892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160789814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160789814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160789892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160789892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160801814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160801814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160801892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160801892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160813892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160813892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160825892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160825892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160837892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160837892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160849892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160849892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160909892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160909892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160921892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160921892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160933814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160933814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160933892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160933892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160945814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160945814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160945892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160945892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160957814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160957814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160957892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160957892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160969814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160969814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160969892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160969892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160981892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160981892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 160993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 160993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 160993892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 160993892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161005814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161005814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161005892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161005892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161017814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161017814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161017892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161017892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161029814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161029814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161029892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161029892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161041814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161041814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161041892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161041892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161053814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161053814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161053892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161053892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161065892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161065892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161077892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161077892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161089892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161089892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161149892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161149892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161149936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161161892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161161892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161161936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161173814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161173814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161173892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161173892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161173936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161185814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161185814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161185892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161185892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161185936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161197814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161197814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161197892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161197892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161197936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161209814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161209814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161209892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161209892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161209936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161221814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161221814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161221892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161221892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161221936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161233892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161233892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161233936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161245892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161245892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161245936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161257814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161257814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161257892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161257892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161257936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161269814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161269814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161269892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161269892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161269936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161281814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161281814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161281892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161281892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161281936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161293814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161293814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161293892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161293892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161293936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161305814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161305814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161305892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161305892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161305936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161317892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161317892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161317936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161329892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161329892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161329936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161389892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161389892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161389936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161401892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161401892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161401936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161413814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161413814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161413892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161413892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161413936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161425814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161425814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161425892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161425892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161425936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161437814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161437814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161437892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161437892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161437936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161449814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161449814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161449892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161449892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161449936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161461814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161461814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161461892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161461892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161461936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161473814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161473814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161473892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161473892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161473936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161485892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161485892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161485936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161497892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161497892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161497936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161509814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161509814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161509892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161509892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161509936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161521814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161521814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161521892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161521892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161521936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161533814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161533814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161533892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161533892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161533936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161545814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161545814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161545892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161545892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161545936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161557892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161557892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161557936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161569892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161569892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 161569936.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161629892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161629892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161629970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161641892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161641892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161641970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161653814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161653814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161653892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161653892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161653970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161665814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161665814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161665892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161665892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161665970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161677814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161677814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161677892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161677892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161677970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161689814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161689814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161689892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161689892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161689970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161701814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161701814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161701892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161701892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161701970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161713814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161713814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161713892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161713892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161713970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161725892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161725892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161725970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161737892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161737892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161737970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161749814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161749814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161749892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161749892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161749970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161761814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161761814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161761892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161761892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161761970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161773814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161773814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161773892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161773892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161773970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161785814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161785814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161785892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161785892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161785970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161797892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161797892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161797970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161809892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161809892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161809970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161881892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161881892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161881970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161893814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161893814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161893892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161893892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161893970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161905814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161905814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161905892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161905892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161905970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161917814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161917814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161917892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161917892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161917970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161929814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161929814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161929892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161929892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161929970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161941814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161941814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161941892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161941892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161941970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161953814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161953814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161953892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161953892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161953970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161965892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161965892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161965970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161977892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161977892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161977970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 161989814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 161989814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 161989892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 161989892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 161989970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162001814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162001814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162001892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162001892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162001970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162013814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162013814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162013892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162013892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162013970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162025814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162025814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162025892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162025892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162025970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162037892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162037892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162037970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162049892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162049892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162049970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162061892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162061892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162061970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162133814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162133814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162133892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162133892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162133970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162145814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162145814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162145892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162145892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162145970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162157814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162157814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162157892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162157892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162157970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162169814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162169814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162169892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162169892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162169970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162181814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162181814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162181892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162181892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162181970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162193814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162193814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162193892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162193892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162193970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162205892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162205892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162205970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162217892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162217892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162217970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162229814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162229814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162229892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162229892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162229970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162241814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162241814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162241892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162241892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162241970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162253814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162253814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162253892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162253892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162253970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162265814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162265814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162265892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162265892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162265970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162277892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162277892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162277970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162289892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162289892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162289970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162301892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162301892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162301970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162313892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162313892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162313970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162373814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162373814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162373892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162373892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162373970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162385814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162385814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162385892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162385892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162385970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162397814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162397814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162397892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162397892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162397970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162409814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162409814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162409892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162409892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162409970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162421814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162421814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162421892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162421892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162421970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162433814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162433814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162433892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162433892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162433970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162445892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162445892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162445970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162457892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162457892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162457970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162469814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162469814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162469892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162469892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162469970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162481814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162481814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162481892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162481892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162481970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162493814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162493814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162493892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162493892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162493970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162505814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162505814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162505892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162505892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162505970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162517814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162517814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162517892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162517892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162517970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162529892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162529892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162529970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162541892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162541892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162541970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162553892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162553892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162553970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162613892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162613892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162613970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162625892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162625892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162625970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162637814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162637814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162637892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162637892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162637970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162649814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162649814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162649892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162649892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162649970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162661814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162661814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162661892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162661892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162661970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162673814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162673814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162673892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162673892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162673970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162685814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162685814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162685892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162685892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162685970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162697814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162697814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162697892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162697892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162697970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162709814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162709814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162709892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162709892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162709970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162721814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162721814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162721892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162721892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162721970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162733814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162733814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162733892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162733892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162733970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162745814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162745814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162745892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162745892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162745970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162757814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162757814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162757892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162757892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162757970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162769814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162769814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162769892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162769892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162769970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162781814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162781814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162781892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162781892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162781970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162793814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162793814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162793892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162793892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162793970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162853814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162853814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162853892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162853892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162853970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162865814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162865814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162865892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162865892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162865970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162877814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162877814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162877892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162877892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162877970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162889814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162889814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162889892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162889892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162889970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162901814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162901814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162901892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162901892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162901970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162913814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162913814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162913892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162913892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162913970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162925814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162925814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162925892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162925892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162925970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162937814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162937814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162937892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162937892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162937970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162949814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162949814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162949892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162949892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162949970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162961814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162961814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162961892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162961892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162961970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162973814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162973814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162973892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162973892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162973970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162985814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162985814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162985892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162985892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162985970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 162997814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 162997814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 162997892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 162997892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 162997970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163009814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163009814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163009892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163009892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163009970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163021814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163021814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163021892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163021892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163021970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163033814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163033814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163033892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163033892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163033970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163093892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163093892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163093970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163105892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163105892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163105970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163117892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163117892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163117970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163129814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163129814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163129892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163129892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163129970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163141814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163141814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163141892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163141892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163141970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163153814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163153814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163153892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163153892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163153970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163165814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163165814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163165892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163165892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163165970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163177814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163177814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163177892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163177892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163177970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163189814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163189814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163189892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163189892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163189970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163201814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163201814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163201892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163201892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163201970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163213814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163213814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163213892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163213892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163213970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163225814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163225814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163225892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163225892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163225970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163237814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163237814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163237892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163237892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163237970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163249814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163249814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163249892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163249892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163249970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163261814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163261814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163261892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163261892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163261970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163273814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163273814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163273892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163273892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163273970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163333814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163333814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163333892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163333892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163333970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163333986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163345814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163345814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163345892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163345892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163345970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163345986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163357814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163357814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163357892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163357892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163357970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163357986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163369814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163369814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163369892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163369892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163369970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163369986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163381814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163381814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163381892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163381892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163381970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163381986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163393814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163393814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163393892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163393892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163393970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163393986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163405814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163405814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163405892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163405892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163405970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163405986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163417814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163417814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163417892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163417892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163417970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163417986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163429814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163429814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163429892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163429892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163429970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163429986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163441814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163441814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163441892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163441892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163441970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163441986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163453814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163453814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163453892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163453892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163453970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163453986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163465814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163465814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163465892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163465892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163465970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163465986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163477814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163477814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163477892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163477892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163477970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163477986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163489814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163489814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163489892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163489892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163489970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163489986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163501892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163501892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163501970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163501986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163513814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163513814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163513892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163513892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163513970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163513986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163573892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163573892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163573970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163573986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163585892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163585892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163585970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163585986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163597892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163597892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163597970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163597986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163609892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163609892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163609970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163609986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163621814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163621814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163621892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163621892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163621970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163621986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163633814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163633814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163633892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163633892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163633970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163633986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163645814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163645814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163645892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163645892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163645970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163645986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163657814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163657814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163657892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163657892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163657970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163657986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163669814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163669814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163669892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163669892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163669970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163669986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163681814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163681814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163681892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163681892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163681970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163681986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163693814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163693814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163693892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163693892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163693970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163693986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163705814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163705814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163705892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163705892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163705970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163705986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163717814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163717814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163717892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163717892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163717970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163717986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163729814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163729814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163729892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163729892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163729970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163729986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163741814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163741814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163741892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163741892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163741970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163741986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163753814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163753814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163753892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163753892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163753970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 163753986.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163813892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163813892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163813970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163814048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163825892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163825892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163825970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163826048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163837892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163837892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163837970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163838048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163849892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163849892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163849970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163850048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163861814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163861814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163861892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163861892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163861970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163862048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163873814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163873814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163873892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163873892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163873970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163874048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163885814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163885814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163885892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163885892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163885970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163886048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163897814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163897814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163897892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163897892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163897970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163898048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163909892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163909892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163909970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163910048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163921892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163921892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163921970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163922048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163933814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163933814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163933892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163933892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163933970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163934048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163945814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163945814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163945892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163945892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163945970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163946048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163957814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163957814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163957892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163957892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163957970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163958048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163969814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163969814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163969892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163969892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163969970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163970048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163981892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163981892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163981970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163982048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 163993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 163993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 163993892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 163993892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 163993970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 163994048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164065892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164065892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164065970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164066048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164077892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164077892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164077970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164078048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164089892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164089892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164089970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164090048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164101814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164101814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164101892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164101892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164101970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164102048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164113814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164113814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164113892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164113892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164113970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164114048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164125814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164125814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164125892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164125892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164125970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164126048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164137814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164137814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164137892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164137892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164137970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164138048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164149892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164149892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164149970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164150048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164161892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164161892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164161970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164162048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164173814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164173814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164173892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164173892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164173970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164174048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164185814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164185814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164185892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164185892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164185970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164186048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164197814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164197814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164197892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164197892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164197970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164198048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164209814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164209814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164209892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164209892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164209970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164210048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164221814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164221814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164221892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164221892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164221970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164222048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164233892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164233892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164233970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164234048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164245892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164245892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164245970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164246048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164317892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164317892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164317970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164318048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164329892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164329892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164329970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164330048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164341814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164341814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164341892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164341892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164341970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164342048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164353814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164353814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164353892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164353892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164353970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164354048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164365814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164365814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164365892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164365892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164365970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164366048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164377814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164377814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164377892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164377892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164377970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164378048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164389892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164389892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164389970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164390048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164401892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164401892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164401970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164402048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164413814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164413814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164413892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164413892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164413970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164414048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164425814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164425814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164425892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164425892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164425970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164426048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164437814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164437814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164437892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164437892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164437970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164438048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164449814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164449814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164449892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164449892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164449970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164450048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164461814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164461814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164461892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164461892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164461970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164462048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164473814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164473814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164473892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164473892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164473970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164474048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164485892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164485892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164485970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164486048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164497892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164497892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164497970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164498048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164557892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164557892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164557970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164558048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164569892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164569892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164569970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164570048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164581814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164581814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164581892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164581892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164581970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164582048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164593814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164593814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164593892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164593892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164593970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164594048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164605814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164605814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164605892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164605892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164605970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164606048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164617814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164617814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164617892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164617892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164617970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164618048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164629892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164629892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164629970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164630048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164641892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164641892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164641970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164642048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164653814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164653814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164653892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164653892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164653970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164654048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164665814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164665814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164665892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164665892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164665970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164666048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164677814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164677814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164677892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164677892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164677970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164678048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164689814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164689814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164689892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164689892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164689970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164690048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164701814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164701814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164701892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164701892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164701970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164702048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164713814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164713814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164713892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164713892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164713970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164714048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164725892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164725892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164725970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164726048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164737892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164737892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164737970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164738048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164797892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164797892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164797970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164798048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164809892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164809892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164809970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164810048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164821814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164821814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164821892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164821892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164821970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164822048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164833814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164833814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164833892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164833892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164833970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164834048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164845814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164845814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164845892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164845892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164845970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164846048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164857814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164857814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164857892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164857892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164857970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164858048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164869814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164869814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164869892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164869892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164869970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164870048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164881892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164881892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164881970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164882048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164893814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164893814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164893892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164893892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164893970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164894048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164905814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164905814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164905892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164905892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164905970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164906048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164917814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164917814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164917892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164917892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164917970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164918048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164929814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164929814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164929892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164929892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164929970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164930048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164941814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164941814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164941892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164941892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164941970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164942048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164953814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164953814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164953892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164953892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164953970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164954048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164965892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164965892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164965970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164966048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 164977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 164977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 164977892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 164977892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 164977970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 164978048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165037892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165037892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165037970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165038048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165049892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165049892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165049970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165050048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165061892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165061892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165061970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165062048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165073814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165073814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165073892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165073892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165073970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165074048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165085814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165085814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165085892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165085892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165085970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165086048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165097814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165097814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165097892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165097892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165097970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165098048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165109814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165109814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165109892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165109892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165109970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165110048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165121814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165121814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165121892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165121892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165121970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165122048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165133814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165133814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165133892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165133892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165133970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165134048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165145814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165145814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165145892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165145892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165145970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165146048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165157814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165157814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165157892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165157892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165157970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165158048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165169814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165169814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165169892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165169892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165169970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165170048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165181814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165181814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165181892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165181892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165181970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165182048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165193814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165193814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165193892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165193892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165193970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165194048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165205892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165205892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165205970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165206048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165217892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165217892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165217970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165218048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165277892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165277892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165277970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165278048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165289892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165289892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165289970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165290048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165301892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165301892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165301970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165302048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165313892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165313892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165313970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165314048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165325814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165325814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165325892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165325892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165325970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165326048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165337814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165337814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165337892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165337892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165337970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165338048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165349814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165349814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165349892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165349892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165349970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165350048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165361814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165361814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165361892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165361892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165361970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165362048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165373814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165373814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165373892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165373892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165373970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165374048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165385814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165385814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165385892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165385892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165385970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165386048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165397814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165397814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165397892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165397892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165397970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165398048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165409814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165409814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165409892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165409892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165409970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165410048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165421814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165421814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165421892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165421892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165421970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165422048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165433814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165433814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165433892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165433892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165433970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165434048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165445892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165445892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165445970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165446048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165457892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165457892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165457970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165458048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165517814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165517814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165517892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165517892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165517970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165518036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165518048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165529892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165529892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165529970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165530036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165530048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165541892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165541892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165541970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165542036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165542048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165553892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165553892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165553970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165554036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165554048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165565814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165565814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165565892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165565892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165565970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165566036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165566048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165577892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165577892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165577970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165578036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165578048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165589892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165589892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165589970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165590036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165590048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165601892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165601892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165601970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165602036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165602048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165613892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165613892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165613970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165614036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165614048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165625892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165625892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165625970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165626036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165626048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165637814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165637814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165637892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165637892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165637970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165638036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165638048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165649814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165649814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165649892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165649892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165649970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165650036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165650048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165661814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165661814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165661892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165661892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165661970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165662036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165662048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165673814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165673814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165673892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165673892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165673970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165674036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165674048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165685814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165685814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165685892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165685892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165685970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165686036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165686048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165697814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165697814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165697892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165697892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165697970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165698036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165698048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165757814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165757814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165757892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165757892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165757970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165758036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165758048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165769814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165769814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165769892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165769892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165769970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165770036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165770048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165781814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165781814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165781892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165781892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165781970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165782036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165782048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165793814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165793814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165793892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165793892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165793970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165794036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165794048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165805814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165805814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165805892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165805892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165805970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165806036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165806048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165817814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165817814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165817892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165817892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165817970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165818036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165818048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165829814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165829814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165829892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165829892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165829970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165830036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165830048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165841814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165841814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165841892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165841892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165841970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165842036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165842048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165853814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165853814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165853892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165853892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165853970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165854036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165854048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165865814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165865814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165865892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165865892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165865970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165866036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165866048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165877814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165877814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165877892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165877892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165877970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165878036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165878048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165889814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165889814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165889892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165889892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165889970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165890036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165890048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165901814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165901814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165901892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165901892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165901970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165902036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165902048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165913814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165913814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165913892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165913892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165913970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165914036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165914048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165925814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165925814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165925892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165925892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165925970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165926036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165926048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165937814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165937814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165937892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165937892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165937970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 165938036.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165938048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 165997814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 165997814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 165997892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 165997892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 165997970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 165998048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 165998048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166009814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166009814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166009892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166009892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166009970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166010048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166010048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166021814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166021814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166021892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166021892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166021970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166022048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166022048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166033814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166033814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166033892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166033892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166033970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166034048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166034048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166045814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166045814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166045892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166045892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166045970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166046048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166046048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166057814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166057814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166057892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166057892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166057970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166058048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166058048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166069814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166069814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166069892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166069892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166069970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166070048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166070048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166081814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166081814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166081892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166081892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166081970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166082048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166082048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166093892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166093892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166093970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166094048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166094048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166105892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166105892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166105970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166106048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166106048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166117892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166117892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166117970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166118048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166118048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166129814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166129814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166129892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166129892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166129970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166130048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166130048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166141814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166141814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166141892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166141892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166141970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166142048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166142048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166153814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166153814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166153892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166153892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166153970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166154048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166154048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166165814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166165814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166165892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166165892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166165970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166166048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166166048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166177814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166177814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166177892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166177892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166177970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166178048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166178048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166249814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166249814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166249892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166249892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166249970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166250048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166250048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166261814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166261814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166261892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166261892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166261970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166262048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166262048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166273814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166273814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166273892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166273892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166273970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166274048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166274048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166285814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166285814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166285892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166285892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166285970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166286048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166286048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166297814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166297814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166297892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166297892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166297970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166298048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166298048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166309814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166309814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166309892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166309892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166309970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166310048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166310048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166321814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166321814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166321892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166321892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166321970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166322048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166322048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166333814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166333814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166333892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166333892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166333970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166334048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166334048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166345814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166345814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166345892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166345892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166345970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166346048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166346048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166357814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166357814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166357892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166357892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166357970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166358048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166358048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166369814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166369814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166369892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166369892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166369970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166370048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166370048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166381814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166381814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166381892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166381892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166381970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166382048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166382048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166393814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166393814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166393892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166393892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166393970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166394048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166394048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166405814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166405814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166405892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166405892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166405970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166406048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166406048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166417814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166417814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166417892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166417892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166417970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166418048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166418048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166429814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166429814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166429892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166429892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166429970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166430048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166430048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166501814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166501892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166501892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166501970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166502048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166502048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166513814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166513814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166513892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166513892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166513970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166514048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166514048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166525814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166525814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166525892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166525892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166525970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166526048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166526048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166537814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166537814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166537892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166537892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166537970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166538048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166538048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166549814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166549814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166549892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166549892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166549970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166550048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166550048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166561814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166561814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166561892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166561892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166561970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166562048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166562048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166573892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166573892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166573970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166574048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166574048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166585892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166585892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166585970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166586048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166586048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166597892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166597892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166597970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166598048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166598048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166609892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166609892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166609970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166610048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166610048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166621814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166621814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166621892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166621892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166621970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166622048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166622048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166633814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166633814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166633892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166633892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166633970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166634048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166634048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166645814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166645814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166645892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166645892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166645970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166646048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166646048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166657814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166657814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166657892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166657892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166657970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166658048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166658048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166669814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166669814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166669892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166669892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166669970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166670048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166670048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166681814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166681814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166681892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166681892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166681970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166682048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166682048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166741814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166741814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166741892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166741892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166741970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166742048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166742048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166753814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166753814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166753892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166753892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166753970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166754048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166754048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166765814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166765814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166765892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166765892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166765970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166766048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166766048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166777814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166777814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166777892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166777892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166777970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166778048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166778048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166789814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166789814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166789892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166789892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166789970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166790048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166790048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166801814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166801814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166801892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166801892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166801970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166802048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166802048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166813814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166813892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166813892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166813970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166814048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166814048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166825814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166825892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166825892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166825970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166826048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166826048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166837814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166837892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166837892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166837970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166838048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166838048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166849814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166849892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166849892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166849970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166850048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166850048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166861814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166861814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166861892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166861892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166861970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166862048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166862048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166873814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166873814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166873892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166873892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166873970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166874048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166874048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166885814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166885814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166885892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166885892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166885970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166886048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166886048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166897814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166897814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166897892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166897892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166897970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166898048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166898048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166909814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166909892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166909892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166909970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166910048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166910048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166921814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166921892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166921892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166921970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166922048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166922048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166981814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166981892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166981892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166981970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166982048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166982048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 166993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 166993814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 166993892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 166993892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 166993970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 166994048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 166994048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167005814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167005814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167005892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167005892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167005970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167006048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167006048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167017814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167017814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167017892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167017892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167017970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167018048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167018048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167029814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167029814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167029892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167029892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167029970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167030048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167030048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167041814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167041814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167041892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167041892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167041970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167042048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167042048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167053814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167053814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167053892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167053892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167053970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167054048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167054048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167065814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167065892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167065892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167065970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167066048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167066048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167077814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167077892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167077892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167077970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167078048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167078048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167089814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167089892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167089892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167089970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167090048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167090048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167101814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167101814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167101892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167101892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167101970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167102048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167102048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167113814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167113814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167113892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167113892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167113970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167114048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167114048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167125814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167125814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167125892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167125892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167125970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167126048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167126048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167137814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167137814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167137892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167137892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167137970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167138048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167138048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167149814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167149892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167149892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167149970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167150048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167150048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167161814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167161892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167161892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167161970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167162048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167162048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167221814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167221814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167221892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167221892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167221970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167222048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167222048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167233814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167233892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167233892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167233970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167234048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167234048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167245814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167245892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167245892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167245970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167246048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167246048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167257814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167257814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167257892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167257892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167257970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167258048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167258048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167269814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167269814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167269892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167269892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167269970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167270048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167270048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167281814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167281814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167281892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167281892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167281970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167282048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167282048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167293814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167293814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167293892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167293892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167293970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167294048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167294048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167305814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167305814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167305892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167305892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167305970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167306048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167306048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167317814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167317892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167317892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167317970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167318048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167318048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167329814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167329892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167329892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167329970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167330048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167330048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167341814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167341814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167341892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167341892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167341970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167342048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167342048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167353814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167353814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167353892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167353892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167353970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167354048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167354048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167365814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167365814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167365892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167365892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167365970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167366048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167366048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167377814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167377814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167377892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167377892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167377970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167378048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167378048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167389814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167389892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167389892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167389970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167390048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167390048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167401814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167401892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167401892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167401970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167402048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167402048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167461814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167461814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167461892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167461892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167461970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167462048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167462048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167473814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167473814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167473892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167473892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167473970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167474048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167474048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167485814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167485892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167485892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167485970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167486048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167486048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167497814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167497892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167497892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167497970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167498048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167498048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167509814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167509814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167509892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167509892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167509970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167510048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167510048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167521814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167521814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167521892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167521892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167521970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167522048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167522048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167533814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167533814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167533892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167533892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167533970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167534048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167534048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167545814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167545814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167545892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167545892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167545970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167546048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167546048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167557814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167557892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167557892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167557970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167558048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167558048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167569814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167569892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167569892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167569970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167570048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167570048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167581814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167581814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167581892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167581892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167581970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167582048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167582048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167593814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167593814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167593892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167593892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167593970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167594048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167594048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167605814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167605814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167605892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167605892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167605970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167606048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167606048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167617814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167617814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167617892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167617892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167617970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167618048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167618048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167629814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167629892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167629892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167629970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167630048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167630048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167641814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167641892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167641892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167641970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167642048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167642048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167701814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167701814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167701892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167701892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167701970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167702048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167702048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167713814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167713814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167713892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167713892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167713970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167714048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167714048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167725814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167725892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167725892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167725970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167726048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167726048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167737814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167737892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167737892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167737970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167738048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167738048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167749814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167749814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167749892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167749892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167749970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167750048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167750048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167761814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167761814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167761892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167761892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167761970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167762048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167762048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167773814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167773814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167773892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167773892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167773970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167774048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167774048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167785814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167785814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167785892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167785892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167785970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167786048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167786048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167797814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167797892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167797892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167797970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167798048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167798048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167809814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167809892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167809892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167809970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167810048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167810048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167821814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167821814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167821892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167821892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167821970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167822048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167822048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167833814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167833814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167833892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167833892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167833970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167834048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167834048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167845814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167845814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167845892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167845892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167845970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167846048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167846048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167857814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167857814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167857892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167857892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167857970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167858048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167858048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167869814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167869814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167869892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167869892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167869970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167870048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167870048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167881814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167881892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167881892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167881970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167882048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167882048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167941814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167941814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167941892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167941892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167941970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167942048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167942048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 167942086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167953814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167953814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167953892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167953892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167953970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167954048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167954048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 167954086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167965814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167965892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167965892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167965970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167966048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167966048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 167966086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167977814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167977892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167977892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167977970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167978048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167978048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 167978086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 167989814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 167989814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 167989892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 167989892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 167989970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 167990048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 167990048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 167990086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168001814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168001814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168001892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168001892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168001970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168002048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168002048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168002086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168013814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168013814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168013892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168013892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168013970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168014048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168014048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168014086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168025814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168025814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168025892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168025892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168025970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168026048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168026048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168026086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168037814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168037892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168037892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168037970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168038048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168038048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168038086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168049814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168049892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168049892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168049970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168050048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168050048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168050086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168061814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168061892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168061892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168061970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168062048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168062048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168062086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168073814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168073814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168073892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168073892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168073970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168074048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168074048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168074086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168085814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168085814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168085892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168085892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168085970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168086048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168086048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168086086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168097814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168097814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168097892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168097892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168097970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168098048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168098048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168098086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168109814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168109814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168109892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168109892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168109970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168110048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168110048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168110086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168121814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168121814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168121892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168121892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168121970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168122048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168122048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168122086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168181814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168181814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168181892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168181892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168181970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168182048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168182048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168182086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168193814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168193814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168193892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168193892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168193970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168194048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168194048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168194086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168205814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168205892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168205892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168205970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168206048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168206048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168206086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168217814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168217892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168217892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168217970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168218048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168218048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168218086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168229814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168229814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168229892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168229892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168229970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168230048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168230048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168230086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168241814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168241814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168241892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168241892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168241970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168242048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168242048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168242086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168253814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168253814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168253892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168253892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168253970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168254048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168254048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168254086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168265814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168265814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168265892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168265892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168265970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168266048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168266048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168266086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168277814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168277892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168277892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168277970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168278048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168278048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168278086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168289814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168289892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168289892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168289970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168290048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168290048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168290086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168301814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168301892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168301892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168301970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168302048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168302048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168302086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168313814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168313892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168313892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168313970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168314048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168314048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168314086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168325814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168325814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168325892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168325892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168325970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168326048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168326048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168326086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168337814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168337814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168337892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168337892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168337970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168338048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168338048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168338086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168349814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168349814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168349892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168349892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168349970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168350048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168350048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168350086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168361814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168361814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168361892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168361892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168361970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168362048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168362048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 168362086.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168421814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168421814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168421892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168421892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168421970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168422048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168422048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168433814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168433814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168433892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168433892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168433970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168434048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168434048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168434126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168445814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168445892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168445892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168445970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168446048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168446048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168446126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168457814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168457892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168457892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168457970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168458048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168458048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168458126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168469814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168469814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168469892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168469892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168469970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168470048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168470048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168470126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168481814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168481814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168481892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168481892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168481970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168482048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168482048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168493814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168493814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168493892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168493892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168493970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168494048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168494048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168494126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168505814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168505814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168505892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168505892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168505970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168506048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168506048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168506126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168517814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168517814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168517892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168517892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168517970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168518048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168518048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168518126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168529814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168529892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168529892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168529970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168530048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168530048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168530126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168541814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168541892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168541892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168541970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168542048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168542048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168553814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168553892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168553892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168553970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168554048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168554048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168554126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168565814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168565814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168565892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168565892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168565970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168566048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168566048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168566126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168577892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168577892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168577970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168578048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168578048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168578126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168589892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168589892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168589970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168590048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168590048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168590126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 168601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 168601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 168601892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 168601892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 168601970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 168602048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 168602048.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 168602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 100) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 101) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 102) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 105) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 107) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 108) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 109) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 110) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 112) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 113) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 114) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 115) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 117) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 118) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 120) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 122) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 125) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 127) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 128) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 129) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 130) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 132) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 133) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 135) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 137) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 138) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 140) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 142) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 143) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 147) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 148) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 152) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 153) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 155) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 156) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 157) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 158) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 160) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 161) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 162) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 163) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 167) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 168) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 171) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 172) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 173) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 175) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 176) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 177) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 178) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 180) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 181) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 183) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 185) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 186) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 187) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 188) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 189) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 190) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 191) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 195) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 196) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 198) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 199) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 100) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 101) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 102) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 105) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 107) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 108) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 109) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 110) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 112) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 113) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 114) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 115) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 117) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 118) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 120) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 122) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 125) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 127) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 128) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 129) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 130) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 132) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 133) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 135) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 137) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 138) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 140) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 143) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 145) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 148) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 150) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 153) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 155) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 156) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 157) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 158) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 160) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 161) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 162) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 163) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 165) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 167) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 168) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 170) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 171) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 172) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 173) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 175) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 176) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 177) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 178) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 180) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 181) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 183) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 185) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 186) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 187) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 188) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 189) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 190) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 191) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 192) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 195) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 196) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 197) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 198) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 199) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] WR @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (5, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> +[ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] WR @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] RD @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> +[ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] RD @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 284664 ns +Time Done: 314472 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 314568000.0 ps +[ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] WR @ (1, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 792) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 0) -> +[ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> [ 3000 ps] WR @ (5, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] WR @ (6, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] RD @ (1, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 0) -> +[ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> [ 3000 ps] RD @ (5, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] RD @ (6, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> + +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 314472 ns +Time Done: 343776 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 343872000.0 ps +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32767) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32767) -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 32767) -> [ 3000 ps] WR @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 32767) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 32767) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 32767) -> [ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (5, 32767) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 32767) -> +[ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 32767) -> [ 3000 ps] WR @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 32768) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32768) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32767) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32767) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (1, 32767) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 32767) -> [ 3000 ps] RD @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 32767) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 32767) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 32767) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 32767) -> +[ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (6, 32767) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 32767) -> [ 3000 ps] RD @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 32768) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32768) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 343776 ns +Time Done: 373560 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2852) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1773) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 373656000.0 ps +[ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65150) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 694) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61913) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62992) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59754) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60834) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56517) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57596) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54358) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55438) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52200) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48962) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50042) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47883) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45725) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43566) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44646) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42487) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40329) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38170) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39250) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37091) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34933) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36012) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32774) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33854) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30616) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31695) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27378) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28458) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25220) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26299) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21982) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23062) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19824) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20903) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18745) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16586) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17666) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14428) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15507) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13349) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12270) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9032) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5794) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6874) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3636) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4715) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2557) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 398) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1478) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63776) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64855) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62697) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61617) -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60538) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58380) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59459) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56221) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57301) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55142) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52984) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54063) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50825) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51905) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49746) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47588) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48667) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45429) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46509) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42192) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43271) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40033) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41113) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36796) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37875) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34637) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35717) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33558) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31400) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32479) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29241) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30321) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27083) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28162) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26004) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23845) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24925) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21687) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22766) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18449) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19529) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16291) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17370) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13053) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14133) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 10895) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11974) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9816) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7657) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8737) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5499) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6578) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4420) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2261) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3341) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64560) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63481) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60243) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61322) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58084) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57005) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54847) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55926) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52688) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51609) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49451) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50530) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47292) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48372) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44055) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45134) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41896) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42976) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40817) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38659) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39738) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36500) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37580) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35421) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33263) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34342) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31104) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30025) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27867) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28946) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25708) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26788) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23550) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24629) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20312) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21392) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18154) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19233) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17075) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 14916) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15996) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12758) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13837) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11679) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9520) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10600) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7362) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8441) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6283) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5204) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 1966) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3045) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 887) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64264) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62106) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58868) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59948) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56710) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57789) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54551) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55631) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51314) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52393) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49155) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50235) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48076) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45918) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46997) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43759) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44839) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42680) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40522) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41601) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38363) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39443) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37284) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 35126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36205) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32967) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34047) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31888) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29730) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30809) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27571) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28651) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26492) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25413) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22175) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23255) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20017) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21096) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18938) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16779) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17859) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14621) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15700) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13542) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11383) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12463) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9225) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10304) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5987) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7067) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 3829) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4908) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 591) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1671) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63969) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65048) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62890) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60731) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61811) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58573) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59652) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57494) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55335) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56415) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53177) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54256) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51018) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47781) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48860) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45622) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44543) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42385) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43464) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40226) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41306) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36989) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38068) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34830) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35910) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33751) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31593) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32672) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29434) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30514) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28355) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27276) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24038) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22959) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20801) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21880) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18642) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19722) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16484) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17563) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15405) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13246) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14326) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11088) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12167) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7850) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8930) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5692) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6771) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4613) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2454) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3534) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 296) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1375) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64753) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62594) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63674) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60436) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61515) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59357) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57198) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58278) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55040) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51802) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52882) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49644) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50723) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47485) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48565) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46406) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 616) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44248) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45327) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 42089) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43169) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41010) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39931) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36693) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37773) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35614) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33456) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34535) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31297) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32377) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30218) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28060) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25901) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26981) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24822) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22664) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23743) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20505) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21585) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19426) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 592) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17268) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18347) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15109) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16189) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12951) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 14030) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11872) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9713) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10793) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7555) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8634) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6476) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4317) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5397) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2159) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3238) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64457) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 62299) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63378) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59061) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60141) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56903) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57982) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55824) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53665) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51507) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52586) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50428) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48269) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46111) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43952) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45032) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42873) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40715) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41794) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38556) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39636) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37477) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35319) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36398) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33160) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34240) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32081) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 536) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29923) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31002) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27764) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28844) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26685) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24527) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25606) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22368) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23448) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21289) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20210) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 16972) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18052) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15893) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13735) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14814) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11576) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12656) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9418) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10497) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6180) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7260) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 4022) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5101) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2943) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 784) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1864) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64162) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65241) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63083) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60924) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58766) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59845) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57687) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55528) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53370) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54449) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52291) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50132) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47974) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49053) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46895) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44736) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45816) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42578) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43657) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40419) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41499) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39340) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 480) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38261) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 35023) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33944) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31786) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32865) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29627) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30707) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28548) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26390) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27469) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24231) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25311) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20994) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22073) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18835) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19915) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17756) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15598) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16677) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13439) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14519) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12360) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 456) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10202) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11281) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8043) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5885) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6964) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4806) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2647) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3727) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 489) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1568) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64946) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62787) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63867) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60629) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61708) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59550) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57391) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55233) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56312) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53075) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51995) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49837) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50916) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48758) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46599) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47679) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44441) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45520) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43362) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41203) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42283) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39045) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40124) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36886) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37966) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35807) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 416) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33649) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34728) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31490) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32570) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30411) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28253) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29332) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26094) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25015) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22857) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23936) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20698) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21778) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19619) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17461) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18540) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15302) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16382) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14223) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12065) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13144) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 9906) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10986) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8827) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 392) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6669) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7748) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4510) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5590) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2352) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3431) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1273) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64650) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 62492) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 63571) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61413) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59254) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57096) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58175) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56017) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53858) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51700) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52779) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50621) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48462) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49542) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46304) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47383) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45225) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43066) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44146) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 40908) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41987) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39829) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37670) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35512) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36591) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33353) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34433) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32274) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31195) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27957) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29037) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26878) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24720) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25799) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22561) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23641) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21482) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19324) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20403) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17165) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18245) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16086) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13928) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15007) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11769) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12849) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10690) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8532) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9611) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6373) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7453) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5294) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4215) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 977) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2057) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64355) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65434) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63276) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61117) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58959) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60038) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57880) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55721) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56801) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53563) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54642) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52484) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50325) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51405) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48167) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49246) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47088) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44929) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 46009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42771) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43850) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41692) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39533) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40613) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37375) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38454) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36296) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34137) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35217) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31979) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33058) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29820) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30900) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28741) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27662) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26583) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24424) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25504) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23345) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21187) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22266) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19028) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20108) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17949) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15791) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16870) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13632) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14712) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12553) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 264) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10395) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11474) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8236) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9316) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7157) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4999) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6078) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 2840) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3920) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1761) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 682) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 62980) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64060) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60822) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61901) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59743) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57584) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58664) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55426) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56505) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54347) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52188) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53268) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50030) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51109) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48951) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46792) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47872) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44634) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45713) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43555) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41396) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42476) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39238) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40317) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38159) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36000) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 33842) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34921) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32763) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30604) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31684) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28446) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29525) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26287) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27367) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25208) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23050) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24129) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20891) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21971) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19812) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 208) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17654) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18733) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15495) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16575) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14416) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12258) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13337) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10099) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9020) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6862) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7941) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4703) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5783) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 3624) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1466) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2545) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64843) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 387) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63764) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61606) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62685) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59447) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60527) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57289) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58368) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56210) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54051) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55131) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51893) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52972) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50814) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48655) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49735) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46497) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 47576) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45418) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43259) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41101) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42180) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40022) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37863) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38943) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35705) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36784) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34626) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32467) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33547) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30309) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31388) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29230) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28151) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 24913) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25992) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22754) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23834) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21675) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19517) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20596) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17358) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18438) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16279) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15200) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11962) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13042) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 10883) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8725) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6566) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7646) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3329) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4408) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2250) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1170) -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 91) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63469) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64548) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61310) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62390) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60231) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58073) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 55914) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56994) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53756) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54835) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52677) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50518) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51598) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48360) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49439) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47281) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45122) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46202) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42964) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44043) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41885) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39726) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40806) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37568) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38647) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36489) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34330) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35410) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32172) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33251) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31093) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28934) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30014) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26776) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27855) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 25697) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23538) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24618) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21380) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22459) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19221) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20301) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15984) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17063) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13825) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14905) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12746) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 72) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10588) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11667) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8429) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9509) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7350) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6271) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3033) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 4113) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1954) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65332) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 875) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63173) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64253) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62094) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59936) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61015) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57777) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58857) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56698) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54540) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55619) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52381) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53461) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50223) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51302) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46985) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48065) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44827) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45906) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43748) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41589) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42669) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39431) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40510) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38352) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37273) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34035) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35114) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32956) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30797) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31877) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28639) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29718) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27560) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25401) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26481) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23243) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24322) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20005) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21085) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 17847) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18926) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15688) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16768) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14609) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12451) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13530) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10292) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11372) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9213) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7055) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4896) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5976) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 3817) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1659) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2738) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 580) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 65036) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62879) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 63957) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61799) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 62878) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 61799) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60720) -> [ 3000 ps] WR @ (3, 1016) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59641) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 60720) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 59640) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58562) -> +[ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57483) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 58561) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56403) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57482) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 56403) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55324) -> [ 3000 ps] WR @ (3, 1008) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54245) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 55324) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 1008) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 54244) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53166) -> [ 3000 ps] WR @ (7, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 52087) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 53165) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51007) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 52086) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 51007) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49928) -> [ 3000 ps] WR @ (3, 1008) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48849) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 49928) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 48848) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47770) -> [ 3000 ps] WR @ (7, 1000) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46690) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 47769) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1000) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 46690) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45611) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 45611) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 43453) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 44532) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 43452) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42374) -> [ 3000 ps] WR @ (7, 1000) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41294) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 42373) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 41294) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40215) -> +[ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 39136) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 40215) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38057) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 39136) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 38056) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36978) -> [ 3000 ps] WR @ (7, 992) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35898) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 36977) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 992) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 35898) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34819) -> [ 3000 ps] WR @ (3, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33740) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 34819) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32660) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 33740) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 30502) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 31581) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 29423) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 984) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 27264) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 28344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 25106) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 26185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 24027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 21868) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 22948) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 19710) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 20789) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18631) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 16472) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 17552) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 14314) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 15393) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 12155) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 13235) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 11076) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 968) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 8918) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 9997) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 6759) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 7839) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 5680) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 3522) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 4601) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 1363) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 2443) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 284) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 63662) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 64741) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 61503) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 62583) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 60424) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 58266) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 59345) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 56107) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 57187) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 55028) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 52870) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 53949) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 50711) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 51791) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 49632) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 944) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 47474) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 48553) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 45315) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 46395) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 43157) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 44236) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 42078) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 39919) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 40999) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 37761) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 38840) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 36682) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 34523) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 35603) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 32365) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 33444) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 31286) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 29127) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 30207) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 26969) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 28048) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 25890) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 23731) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 24811) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 21573) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 22652) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 20494) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 912) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 18335) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 19415) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 16177) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 17256) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 15098) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 12939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 14019) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 10781) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 11860) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 8622) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 9702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 7543) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 5385) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 6464) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 3226) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 4306) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 2147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 65525) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 1068) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 63366) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 64446) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 62287) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 60129) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 61208) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 57970) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 59050) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 56891) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 880) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 54733) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 55812) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 52574) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 53654) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 51495) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 49337) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 50416) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 47178) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 48258) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 46099) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 43941) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 45020) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 41782) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 42862) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 39624) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 40703) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 38545) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 36386) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 37466) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 34228) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 35307) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 30990) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 32070) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 28832) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 29911) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 27753) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 856) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 25594) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 26674) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 23436) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 24515) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 22357) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (7, 20198) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 21278) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 18040) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 19119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 16961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 14802) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 15882) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 12644) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 13723) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 11565) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 9406) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 10486) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 7248) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 8327) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 5089) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 6169) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 4010) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 832) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 1852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 2931) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 65229) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 773) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 64150) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 61992) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 63071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 59833) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 60913) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 58754) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 56596) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 54437) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 55517) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 53358) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 51200) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 52279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 49041) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 50121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 47962) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 45804) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 46883) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 43645) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 44725) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 42566) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 808) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 40408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 41487) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 38249) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 39329) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 36091) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 37170) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 35012) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32853) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 33933) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 30695) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 31774) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 29616) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 27457) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 28537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 25299) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 26378) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 24220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 22061) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 23141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 19903) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 20982) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 16665) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 17745) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 14507) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 15586) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 13428) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 776) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 11269) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 12349) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 9111) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 10190) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 8032) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 5873) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 6953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2852) -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1773) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 65150) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 694) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61913) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62992) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60834) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59754) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58675) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56517) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57596) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55438) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54358) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51121) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52200) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50042) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48962) -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47883) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45725) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44646) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43566) -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42487) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40329) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39250) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38170) -> [ 3000 ps] RD @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37091) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34933) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36012) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 33854) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32774) -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30616) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31695) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27378) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28458) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26299) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25220) -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24141) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21982) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23062) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20903) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19824) -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16586) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17666) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15507) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14428) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13349) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11190) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12270) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 10111) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9032) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5794) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6874) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4715) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3636) -> +[ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2557) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 398) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1478) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64855) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63776) -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61617) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62697) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60538) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58380) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59459) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57301) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56221) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52984) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54063) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51905) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50825) -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49746) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47588) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48667) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46509) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45429) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44350) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42192) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43271) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41113) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40033) -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36796) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37875) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35717) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34637) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33558) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31400) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32479) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30321) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29241) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 27083) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28162) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23845) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24925) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22766) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21687) -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20608) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18449) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19529) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17370) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16291) -> [ 3000 ps] RD @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13053) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14133) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11974) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10895) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9816) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7657) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8737) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6578) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5499) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 4420) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2261) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3341) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1182) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> +[ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64560) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62401) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63481) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61322) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60243) -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58084) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57005) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54847) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55926) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53768) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52688) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51609) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49451) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50530) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48372) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47292) -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44055) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42976) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41896) -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40817) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38659) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39738) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37580) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36500) -> [ 3000 ps] RD @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35421) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33263) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34342) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32184) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31104) -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30025) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27867) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28946) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26788) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25708) -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23550) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24629) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22471) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20312) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21392) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19233) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18154) -> [ 3000 ps] RD @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17075) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14916) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15996) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13837) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12758) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11679) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9520) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10600) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8441) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7362) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6283) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4124) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5204) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3045) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1966) -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 887) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64264) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 65344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63185) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62106) -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61027) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58868) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59948) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57789) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56710) -> [ 3000 ps] RD @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54551) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55631) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51314) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52393) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50235) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49155) -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48076) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45918) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46997) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44839) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43759) -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42680) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40522) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41601) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39443) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38363) -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37284) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35126) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36205) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34047) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32967) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31888) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29730) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30809) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28651) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27571) -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26492) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24334) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25413) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23255) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22175) -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20017) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21096) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16779) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17859) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15700) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14621) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13542) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11383) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12463) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 10304) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9225) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5987) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7067) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4908) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3829) -> +[ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 591) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1671) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 65048) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63969) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62890) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60731) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61811) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59652) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58573) -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57494) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55335) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56415) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54256) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53177) -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51018) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52098) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47781) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48860) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46702) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45622) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44543) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42385) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43464) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41306) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40226) -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36989) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38068) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35910) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34830) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33751) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31593) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32672) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30514) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29434) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28355) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26197) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27276) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25118) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24038) -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22959) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20801) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21880) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19722) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18642) -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16484) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 17563) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15405) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13246) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14326) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 12167) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11088) -> [ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7850) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8930) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6771) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5692) -> +[ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4613) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2454) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3534) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1375) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 296) -> [ 3000 ps] RD @ (4, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64753) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62594) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63674) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61515) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60436) -> [ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59357) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57198) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58278) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56119) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55040) -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51802) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52882) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50723) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49644) -> +[ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47485) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48565) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46406) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44248) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45327) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 43169) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42089) -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41010) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38852) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39931) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37773) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36693) -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35614) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33456) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34535) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32377) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31297) -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30218) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28060) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26981) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25901) -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24822) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22664) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23743) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21585) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20505) -> [ 3000 ps] RD @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19426) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17268) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18347) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16189) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15109) -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12951) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14030) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11872) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9713) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10793) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8634) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7555) -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6476) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4317) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5397) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3238) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2159) -> [ 3000 ps] RD @ (4, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64457) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63378) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62299) -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61220) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59061) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57982) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56903) -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53665) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54745) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52586) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51507) -> +[ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50428) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48269) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47190) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46111) -> [ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43952) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45032) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42873) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40715) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41794) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 39636) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38556) -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37477) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35319) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36398) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34240) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33160) -> +[ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32081) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 536) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29923) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31002) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28844) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27764) -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26685) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24527) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25606) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23448) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22368) -> [ 3000 ps] RD @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21289) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19131) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20210) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18052) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16972) -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15893) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13735) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14814) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12656) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11576) -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9418) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10497) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8339) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6180) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7260) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5101) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4022) -> [ 3000 ps] RD @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2943) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 784) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1864) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 65241) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64162) -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63083) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60924) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59845) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58766) -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57687) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55528) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56608) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54449) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53370) -> +[ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52291) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50132) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49053) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47974) -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46895) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44736) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45816) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43657) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42578) -> [ 3000 ps] RD @ (4, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40419) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41499) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39340) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37182) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38261) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 36103) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35023) -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33944) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 480) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31786) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32865) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30707) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29627) -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28548) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26390) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27469) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25311) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24231) -> [ 3000 ps] RD @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20994) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22073) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19915) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18835) -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17756) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15598) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16677) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14519) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13439) -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 12360) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10202) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11281) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9123) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8043) -> +[ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5885) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6964) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4806) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2647) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3727) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1568) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 489) -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64946) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62787) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63867) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61708) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60629) -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59550) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57391) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58471) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56312) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55233) -> +[ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51995) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53075) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50916) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49837) -> [ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48758) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46599) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47679) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45520) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44441) -> [ 3000 ps] RD @ (4, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43362) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41203) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42283) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40124) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39045) -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36886) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37966) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35807) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33649) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34728) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32570) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31490) -> [ 3000 ps] RD @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30411) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28253) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29332) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27174) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26094) -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25015) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22857) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23936) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21778) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20698) -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 19619) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17461) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18540) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16382) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15302) -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14223) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12065) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 10986) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9906) -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8827) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6669) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7748) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5590) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4510) -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2352) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3431) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1273) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64650) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63571) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62492) -> +[ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61413) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59254) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58175) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57096) -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56017) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53858) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52779) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51700) -> [ 3000 ps] RD @ (4, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50621) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48462) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49542) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47383) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 46304) -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45225) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43066) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41987) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40908) -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 39829) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37670) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38750) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36591) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35512) -> +[ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33353) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34433) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32274) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30116) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31195) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 29037) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27957) -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26878) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24720) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25799) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23641) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22561) -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21482) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19324) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20403) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18245) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17165) -> +[ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16086) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13928) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15007) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12849) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11769) -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10690) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8532) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9611) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7453) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6373) -> [ 3000 ps] RD @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5294) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3136) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4215) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2057) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 977) -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64355) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65434) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63276) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61117) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60038) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58959) -> [ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57880) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55721) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54642) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53563) -> [ 3000 ps] RD @ (4, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52484) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50325) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51405) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49246) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48167) -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47088) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44929) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43850) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42771) -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 41692) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39533) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40613) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38454) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37375) -> +[ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36296) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34137) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35217) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33058) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31979) -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29820) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30900) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28741) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26583) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27662) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 25504) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24424) -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23345) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21187) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22266) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20108) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19028) -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17949) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 272) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15791) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16870) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14712) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13632) -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12553) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10395) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11474) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9316) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8236) -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7157) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4999) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6078) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 3920) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2840) -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1761) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65139) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 682) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64060) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62980) -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60822) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61901) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59743) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57584) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58664) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56505) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55426) -> [ 3000 ps] RD @ (4, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54347) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52188) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53268) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51109) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50030) -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48951) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46792) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47872) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45713) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44634) -> [ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 43555) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41396) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42476) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40317) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39238) -> +[ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36000) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34921) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33842) -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32763) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30604) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31684) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29525) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28446) -> [ 3000 ps] RD @ (4, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26287) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27367) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25208) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23050) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24129) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21971) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20891) -> +[ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19812) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17654) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18733) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16575) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15495) -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 14416) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13337) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12258) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 10099) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9020) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6862) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7941) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5783) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4703) -> [ 3000 ps] RD @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3624) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1466) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2545) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 387) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64843) -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63764) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61606) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62685) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60527) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59447) -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57289) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58368) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56210) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54051) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52972) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51893) -> [ 3000 ps] RD @ (4, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50814) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48655) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49735) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47576) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 46497) -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45418) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43259) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42180) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41101) -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40022) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37863) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38943) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36784) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35705) -> +[ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34626) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32467) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33547) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31388) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30309) -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29230) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27071) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25992) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24913) -> [ 3000 ps] RD @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22754) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23834) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19517) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20596) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18438) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17358) -> +[ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 136) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14121) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15200) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 13042) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11962) -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10883) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8725) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7646) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6566) -> [ 3000 ps] RD @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3329) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4408) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2250) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1170) -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 91) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63469) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64548) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62390) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61310) -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60231) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58073) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59152) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56994) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55914) -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53756) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54835) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52677) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50518) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51598) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49439) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48360) -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47281) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45122) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46202) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44043) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42964) -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 41885) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39726) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40806) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38647) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37568) -> +[ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36489) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34330) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35410) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33251) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32172) -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31093) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28934) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30014) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27855) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26776) -> [ 3000 ps] RD @ (4, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25697) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23538) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24618) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22459) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21380) -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19221) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20301) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15984) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 17063) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14905) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13825) -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12746) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10588) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11667) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9509) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8429) -> [ 3000 ps] RD @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5192) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6271) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 4113) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 3033) -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1954) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65332) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 875) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64253) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63173) -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62094) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59936) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61015) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58857) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57777) -> +[ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56698) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54540) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55619) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53461) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52381) -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50223) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51302) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49144) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46985) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48065) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45906) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44827) -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 43748) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41589) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42669) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40510) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39431) -> +[ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38352) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36193) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37273) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 35114) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34035) -> [ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32956) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30797) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31877) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29718) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28639) -> [ 3000 ps] RD @ (4, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27560) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25401) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26481) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24322) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23243) -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22164) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20005) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21085) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18926) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17847) -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15688) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14609) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12451) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13530) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11372) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10292) -> [ 3000 ps] RD @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7055) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8134) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5976) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4896) -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3817) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1659) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2738) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 580) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 65036) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62879) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 63957) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61799) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 62878) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 61799) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60720) -> [ 3000 ps] RD @ (3, 1016) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59641) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 60720) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 59640) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58562) -> [ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 58561) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57483) -> [ 3000 ps] RD @ (7, 1016) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56403) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57482) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 56403) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55324) -> [ 3000 ps] RD @ (3, 1008) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54245) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 55324) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 54244) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53166) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 53165) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 51007) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 52086) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 51007) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49928) -> [ 3000 ps] RD @ (3, 1008) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48849) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 49928) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 48848) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47770) -> [ 3000 ps] RD @ (7, 1000) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46690) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 47769) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 46690) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45611) -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 45611) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44532) -> [ 3000 ps] RD @ (3, 1000) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43453) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 44532) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 43452) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42374) -> [ 3000 ps] RD @ (7, 1000) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41294) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 42373) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 41294) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40215) -> +[ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 40215) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39136) -> [ 3000 ps] RD @ (3, 992) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38057) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 39136) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 38056) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36978) -> +[ 3000 ps] RD @ (7, 992) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35898) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 36977) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 35898) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34819) -> [ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 34819) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33740) -> +[ 3000 ps] RD @ (3, 992) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 32660) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 33740) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 31581) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 30502) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 29423) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 27264) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 28344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 26185) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 25106) -> [ 3000 ps] RD @ (7, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 24027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 21868) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 22948) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 20789) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 19710) -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18631) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 16472) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 17552) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 15393) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 14314) -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 12155) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 13235) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 11076) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 8918) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 9997) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 7839) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 6759) -> [ 3000 ps] RD @ (3, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 5680) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 3522) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 4601) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 2443) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 1363) -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 284) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 63662) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 64741) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 62583) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 61503) -> [ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 60424) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 58266) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 59345) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 57187) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 56107) -> +[ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 55028) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 52870) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 53949) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 51791) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 50711) -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 49632) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 47474) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 48553) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 46395) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 45315) -> [ 3000 ps] RD @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 43157) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 44236) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 42078) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 39919) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 40999) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 38840) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 37761) -> +[ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 36682) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 928) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 34523) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 35603) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 33444) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 32365) -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 31286) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 29127) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 30207) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 28048) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 26969) -> [ 3000 ps] RD @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 25890) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 23731) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 24811) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 22652) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 21573) -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 20494) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 18335) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 19415) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 17256) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 16177) -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 15098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 12939) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 14019) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 11860) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 10781) -> +[ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 8622) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 9702) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 7543) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 5385) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 6464) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 4306) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 3226) -> [ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 2147) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 65525) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 1068) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 64446) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 63366) -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 62287) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 60129) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 61208) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 59050) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 57970) -> +[ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 56891) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 54733) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 55812) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 53654) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 52574) -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 51495) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 49337) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 50416) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 48258) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 47178) -> [ 3000 ps] RD @ (3, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 46099) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 43941) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 45020) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 42862) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 41782) -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 39624) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 40703) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 38545) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 36386) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 37466) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 35307) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 34228) -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33149) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 30990) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 32070) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 29911) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 28832) -> [ 3000 ps] RD @ (7, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 27753) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 25594) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 26674) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 24515) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 23436) -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 22357) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 20198) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 21278) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 19119) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18040) -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 16961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 14802) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 15882) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 13723) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 12644) -> +[ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 11565) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 840) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 9406) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 10486) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 8327) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 7248) -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 5089) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 6169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 4010) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 1852) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 2931) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 773) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 65229) -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 64150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 3000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 61992) -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 63071) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 60913) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 59833) -> +[ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 58754) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 56596) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 57675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 55517) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 54437) -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 53358) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 51200) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 52279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 50121) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 49041) -> [ 3000 ps] RD @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 47962) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 45804) -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 46883) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 44725) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 43645) -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 42566) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 3000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 40408) -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 41487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (3, 39329) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 38249) -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (3, 36091) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 37170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 35012) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 32853) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 33933) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 31774) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 30695) -> +[ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 29616) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 27457) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 28537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 26378) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 25299) -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 24220) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 22061) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 23141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 20982) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 19903) -> [ 3000 ps] RD @ (7, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 18824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> +[ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 16665) -> +[ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 17745) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (7, 15586) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 14507) -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 13428) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 3000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 11269) -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 12349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (7, 10190) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 9111) -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (3, 8032) -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 373560 ns +Time Done: 487416 ns +Average Rate: 49 ns/request +-------------------------------- + + +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 3000 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (7, 5873) -> [ 6000 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 6953) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 487560000.0 ps +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 489884 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:26 ; elapsed = 00:35:29 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1664 ; free virtual = 10688 +## quit +INFO: xsimkernel Simulation Memory Usage: 236636 KB (Peak: 294432 KB), Simulation CPU Usage: 2124480 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 17:30:59 2025... diff --git a/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_two_lanes_bus_delay_0.log b/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_two_lanes_bus_delay_0.log new file mode 100644 index 0000000..19ac472 --- /dev/null +++ b/testbench/xsim/test_12_000_ddr3_3_000_odelay_1_lanes_two_lanes_bus_delay_0.log @@ -0,0 +1,12259 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=1... +Compiling module xil_defaultlib.ddr3_top(ROW_BITS=16,AUX_WIDTH=1... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 11 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 128 +wb_sel_bits = 16 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 3 +WRITE_SLOT = 3 +ACTIVATE_SLOT = 2 +PRECHARGE_SLOT = 0 +REMAINING_SLOT = 1 + +DELAYS: +----------------------------- +CL = 5 +CWL = 5 +PRECHARGE_TO_ACTIVATE_DELAY = 0 +ACTIVATE_TO_WRITE_DELAY = 0 +ACTIVATE_TO_READ_DELAY = 0 +ACTIVATE_TO_PRECHARGE_DELAY = 3 +ACTIVATE_TO_ACTIVATE_DELAY = 0 +READ_TO_WRITE_DELAY = 1 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 6 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 12000 +DDR3_CLK_PERIOD = 3000 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [121036 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.reset at time 540100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.cmd_task at time 1561636.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] MRS -> ddr3_dimm_micron_sim.ddr3_0.cmd_task: at time 1933636.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] ZQC -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8101636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8113636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8125636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8137636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8149636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8161636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8173636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8185636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8197636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8209636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8221636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8233636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8245636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8257636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8269636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8281636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8341636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8353636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8365636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8377636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8389636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8401636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8413636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8425636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8437636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8449636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8461636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8473636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8485636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8497636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8509636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8521636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8581636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8593636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8605636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8617636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8629636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8641636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8653636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8665636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8677636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8689636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8701636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8713636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8725636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8737636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 8749636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 8761636.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8821714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8869714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8881714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8893714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8905714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8917714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8929714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8941714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8953714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8965714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8977714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 8989714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9001714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9073714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9085714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9097714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9121714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9133714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9145714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9157714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9169714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9205714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9217714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9229714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9241714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9253714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9373714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9385714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9397714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9409714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9421714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9433714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9445714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9457714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9469714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9481714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9493714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9505714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9565636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9577636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 9589636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9601636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9613636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9613714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9625636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9625714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9637636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9637714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 9649636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9649714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9661636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9661714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9673636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9673714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9685636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9685714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9697636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9697714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 9709636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9709714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9721636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9721714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9733636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9733714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9745636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9745714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9805636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9817636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 9829636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9841636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9853636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9853714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9865636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9865714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9877636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9877714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 9889636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9889714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9901636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9901714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9913636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9913714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9925636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9925714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9937636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9937714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 9949636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9949714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9961636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9961714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9973636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9973714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 9985636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 9985714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10045636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10045714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10057636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10057714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 10069636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10069714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10081636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10081714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10093636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10093714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10105636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10105714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10117636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10117714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 10129636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10129714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10141636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10141714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10153636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10153714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10165636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10165714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10177636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10177714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 10189636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10189714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10201636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10201714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10213636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10213714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 10225636.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10225714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10285714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10297714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10309714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10321714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10333714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10333714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10345714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10345714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10357714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10357714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10369714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10369714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10381714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10381714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10393714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10393714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10405714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10405714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10417714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10417714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10429714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10429714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10441714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10441714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10453714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10453714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10465714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 10465714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] MRS -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 100) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 101) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 102) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 105) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 106) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 107) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 108) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 109) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 110) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 112) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 113) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 114) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 115) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 116) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 117) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 118) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 120) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 121) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 122) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 125) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 127) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 128) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 129) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 130) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 132) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 133) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 135) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 136) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 137) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 138) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 140) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 141) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 142) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 143) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 146) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 147) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 148) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 151) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 152) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 153) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 155) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 156) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 157) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 158) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 160) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 161) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 162) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 163) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 166) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 167) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 168) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 171) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 172) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 173) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 175) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 176) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 177) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 178) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 180) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 181) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 182) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 183) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 186) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 187) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 188) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 189) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 191) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 192) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 195) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 196) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 197) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 198) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 199) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 100) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 101) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 102) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 105) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 106) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 107) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 108) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 109) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 110) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 111) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 112) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 113) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 114) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 115) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 116) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 117) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 118) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 119) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 120) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 121) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 122) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 123) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 124) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 125) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 126) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 127) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 128) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 129) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 130) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 131) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 132) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 133) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 134) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 135) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 136) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 137) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 138) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 140) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 141) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 143) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 144) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 145) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 148) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 149) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 150) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 152) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 153) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 155) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 156) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 157) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 158) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 159) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 160) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 161) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 162) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 163) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 165) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 167) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 168) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 169) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 170) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 171) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 172) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 173) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 174) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 175) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 176) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 177) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 178) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 180) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 181) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 182) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 183) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 185) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 186) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 187) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 188) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 189) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 190) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 191) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 193) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 195) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 196) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 198) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 199) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] WR @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> +[ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] WR @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 0) -> [ 3000 ps] RD @ (1, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 0) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> [ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 0) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (5, 0) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 0) -> +[ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 0) -> [ 3000 ps] RD @ (6, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 1) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 1) -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 63468 ns +Time Done: 92760 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> FAILED: Address = 1151, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092f75e2592f6502592f5422592f43425, read data = 00000000000000000000000123456789 @ 92856000.0 ps +[ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32768) -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 32768) -> [ 3000 ps] WR @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (3, 32768) -> [ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 32768) -> +[ 3000 ps] WR @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 32768) -> [ 3000 ps] WR @ (4, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (5, 32768) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 32768) -> [ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 32768) -> [ 3000 ps] WR @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32769) -> [ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32769) -> +[ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 3000 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (1, 32768) -> [ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (1, 32768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (2, 32768) -> [ 3000 ps] RD @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (3, 32768) -> [ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 32768) -> +[ 3000 ps] RD @ (3, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 32768) -> [ 3000 ps] RD @ (4, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 32768) -> [ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (7, 32768) -> [ 3000 ps] RD @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (7, 32768) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32769) -> [ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 32769) -> +[ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 92760 ns +Time Done: 122580 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65535) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 8) -> FAILED: Address = 33555583, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000faf75ef5faf650f5faf542f5faf434f5, read data = 00000000000000000000000123456789 @ 122676000.0 ps +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 3000 ps] PRE @ (1) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 65535) -> +[ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (2, 65535) -> [ 3000 ps] WR @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (1, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 65535) -> +[ 3000 ps] WR @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 48) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (3, 65535) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 65535) -> [ 3000 ps] WR @ (3, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 184) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 200) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 65535) -> [ 3000 ps] WR @ (4, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 65535) -> [ 3000 ps] WR @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (5, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (7, 65535) -> [ 3000 ps] WR @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (6, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (6, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 3000 ps] WR @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 136) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 0) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] WR @ (0, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65535) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 3000 ps] PRE @ (1) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 65535) -> +[ 3000 ps] RD @ (0, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (2, 65535) -> [ 3000 ps] RD @ (1, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (1, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (2, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (3, 65535) -> +[ 3000 ps] RD @ (2, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 65535) -> [ 3000 ps] RD @ (3, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (3, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 176) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65535) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (5, 65535) -> [ 3000 ps] RD @ (4, 984) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (6, 65535) -> [ 3000 ps] RD @ (5, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (5, 992) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 8) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 48) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 88) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 128) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 168) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 208) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 248) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 288) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 328) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 368) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 408) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 448) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 488) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 528) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 568) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 608) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 648) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 968) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 6000 ps] NOP -> +[ 3000 ps] ACT @ (7, 65535) -> [ 3000 ps] RD @ (6, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (6, 1008) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 24) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 64) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 104) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 144) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 184) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 224) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 264) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 304) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 344) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 384) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 424) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 464) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 504) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 544) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 584) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 624) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 0) -> +[ 3000 ps] RD @ (7, 984) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (1, 0) -> [ 3000 ps] RD @ (0, 984) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 122580 ns +Time Done: 151884 ns +Average Rate: 12 ns/request +-------------------------------- + + +[ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 1000) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2852) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> FAILED: Address = 67108991, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521a8fa4521981a4521873a4521765a4, read data = 00000000000000000000000123456789 @ 151980000.0 ps +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2582) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2043) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2312) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1503) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1773) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1233) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 694) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 963) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 424) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 154) -> +[ 3000 ps] WR @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65420) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64881) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65150) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64341) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64611) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63532) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63801) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 62992) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63262) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62722) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62183) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62452) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61643) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61913) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61373) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60834) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61103) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60294) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60564) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60024) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59485) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59754) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58945) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59215) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58136) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58405) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57596) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57866) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57326) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56787) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57056) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56247) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56517) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55977) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55438) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55707) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54898) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55168) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54628) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54089) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54358) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 53549) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53819) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52740) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53009) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52200) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52470) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51930) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51391) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51660) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50851) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51121) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50581) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50042) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50311) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49502) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49772) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49232) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48693) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48962) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48153) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48423) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47883) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47344) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47613) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 46804) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47074) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46534) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45995) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46264) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45455) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45725) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44646) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44915) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 44106) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44376) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43836) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 43297) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43566) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 42757) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43027) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42487) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41948) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42217) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41408) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 41678) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41138) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40599) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40868) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40059) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40329) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39789) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39250) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39519) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38710) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38980) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38440) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37901) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38170) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 37361) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37631) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37091) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36552) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36821) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36012) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36282) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35742) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35203) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35472) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34933) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34393) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34663) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 33854) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34123) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33584) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 928) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33044) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33314) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32505) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32774) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32235) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31695) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31965) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31156) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31425) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30886) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30346) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30616) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 29807) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30076) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29537) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28997) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29267) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28458) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28727) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28188) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27648) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27918) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27378) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27109) -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26839) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26299) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26569) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25760) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26029) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25490) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24950) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25220) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 24411) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24680) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24141) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23601) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23871) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23062) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23331) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22792) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22252) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22522) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21713) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21982) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21443) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20903) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21173) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20364) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20633) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20094) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19554) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19824) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19015) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19284) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18205) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18475) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 17666) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17935) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17396) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16856) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16317) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16586) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16047) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15507) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15777) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14968) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15237) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14698) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14158) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14428) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13619) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13888) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12809) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13079) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12270) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12539) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12000) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11460) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11730) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 10921) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11190) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10651) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10111) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10381) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9572) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9841) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9302) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8762) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9032) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 8223) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8492) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7413) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7683) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6874) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7143) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6604) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6064) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6334) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5525) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5794) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5255) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4715) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4985) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 4176) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4445) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3906) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3366) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3636) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2827) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 3096) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2557) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2017) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2287) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 1478) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1747) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1208) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 896) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 668) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 398) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65395) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 128) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64855) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65125) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64585) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64046) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64315) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63506) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63776) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63236) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62697) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62966) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 62157) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62427) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61887) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61348) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61617) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60808) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61078) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60538) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59999) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60268) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59459) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59729) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59189) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58650) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58919) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58110) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58380) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57840) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57301) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57570) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56761) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57031) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56491) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55952) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56221) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 55412) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55682) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55142) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54603) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54872) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54333) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54063) -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53793) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53254) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53523) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52714) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52984) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52444) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51905) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52174) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51365) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51635) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51095) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50556) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50825) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50016) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50286) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49746) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49207) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49476) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48667) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48937) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48397) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47858) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48127) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 47318) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47588) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47048) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46509) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46778) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45969) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46239) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45699) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45160) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45429) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 44620) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44890) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44350) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43811) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43271) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 43541) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43001) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42462) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42731) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41922) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41652) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 872) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41113) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41382) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40573) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40843) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40303) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39764) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40033) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 39224) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39494) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38415) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38684) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 37875) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38145) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37605) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37066) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37335) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36526) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 36796) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36256) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35717) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35986) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 35177) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35447) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34907) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34368) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34637) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33828) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34098) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33558) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33019) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33288) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32479) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32749) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32209) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 856) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31670) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31939) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31400) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30860) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31130) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30321) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30590) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30051) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29511) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29781) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28972) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29241) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28162) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28432) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27623) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27892) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27353) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26813) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27083) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26274) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26543) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26004) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25464) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25734) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 24925) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25194) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24655) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24115) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24385) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23576) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23845) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23306) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22766) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23036) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 22227) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22496) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21957) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21417) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21687) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20878) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20068) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20338) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19529) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19798) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19259) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18719) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18989) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18180) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18449) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17910) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17370) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17640) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16831) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 17100) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16561) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16021) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16291) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15751) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15482) -> +[ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14672) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14942) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14133) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14402) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13863) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13323) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13593) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12784) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13053) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12514) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11974) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12244) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11435) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11704) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11165) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10625) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10895) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 10086) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10355) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9816) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9276) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9546) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8737) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9006) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8467) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7927) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8197) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7388) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7657) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6578) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6848) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 6039) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6308) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5769) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5229) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5499) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 4690) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4959) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4420) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3880) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 3341) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3610) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2531) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1992) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2261) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1722) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1182) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1452) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 643) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 912) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 373) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 65369) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 103) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64830) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65099) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64560) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64020) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64290) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63481) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 63750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63211) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62671) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62941) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61862) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61322) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61592) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61052) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60513) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60782) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59973) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60243) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59703) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59164) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59433) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58624) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58894) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58354) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57815) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58084) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57275) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57545) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57005) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56466) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56735) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 55926) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56196) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55656) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55117) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55386) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54577) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54847) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54307) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53768) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54037) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 53228) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53498) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52958) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52419) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52688) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51879) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52149) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51609) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51070) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50530) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50800) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50260) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49721) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49990) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 49181) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49451) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48911) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48372) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48641) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 47832) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48102) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47562) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47023) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47292) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 46483) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46753) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45674) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45943) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45134) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45404) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44864) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44325) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44594) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43785) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44055) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43515) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42976) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43245) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42706) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42436) -> +[ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41627) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41896) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41087) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41357) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40817) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40278) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40547) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 39738) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40008) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39468) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38929) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39198) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38389) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38659) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38119) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37580) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37849) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 37040) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37310) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36770) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36231) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36500) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35691) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35961) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35421) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34882) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35151) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34342) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34612) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34072) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33533) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33802) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32993) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33263) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32723) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32184) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32453) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31644) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31914) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31374) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30835) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 30295) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30565) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30025) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29486) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29755) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28946) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29216) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28676) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28137) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28406) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27867) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27327) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27597) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26788) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27057) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26518) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25978) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 26248) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25439) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25708) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25169) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24629) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24899) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 24090) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24359) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23820) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23280) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23550) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22741) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23010) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21931) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22201) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21392) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21661) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21122) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20582) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20852) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20043) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20312) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19773) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19233) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 19503) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 18694) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 18963) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18424) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17884) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 17345) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17614) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17075) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 784) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16535) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16805) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15996) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16265) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15726) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15186) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15456) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 14647) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14916) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14377) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13837) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14107) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 13298) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13567) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13028) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12488) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12758) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 11949) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 12218) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11679) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11139) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11409) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 10600) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10869) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10330) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9790) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10060) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9251) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9520) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8981) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8441) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8711) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7902) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8171) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7632) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7092) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7362) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 6553) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6822) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6283) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5743) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6013) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5204) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 5473) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4934) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4394) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4664) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4124) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3855) -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3585) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3045) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3315) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 2506) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2775) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2236) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1696) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1966) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 1157) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1426) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 887) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 347) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 617) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 65344) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 77) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65074) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64534) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64804) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63995) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64264) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63725) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63185) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63455) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62646) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62915) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62376) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61836) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62106) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61297) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61566) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60757) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 59948) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60217) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59678) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59138) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58868) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58329) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58598) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 57789) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58059) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57519) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 760) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56980) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57249) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 56440) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56710) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55631) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55900) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 55091) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55361) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54821) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54282) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54551) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 53742) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54012) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53472) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52933) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53202) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52393) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52663) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52123) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51584) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51853) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 51044) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51314) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50774) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50235) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50504) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49695) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49965) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49425) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48886) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49155) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48346) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48616) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48076) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47806) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 46997) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47267) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46727) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46188) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46457) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 45648) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45918) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45378) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44839) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45108) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 44299) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44569) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44029) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43490) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43759) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42950) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43220) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42680) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42141) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42410) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 41601) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41871) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41331) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40792) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41061) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40252) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40522) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39982) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39443) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39712) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 38903) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 39173) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38633) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38094) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38363) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 37554) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37284) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36745) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37014) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36205) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36475) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35935) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35396) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35665) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34856) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35126) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34586) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34047) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34316) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 33507) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33777) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33237) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32698) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32967) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32158) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32428) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31888) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31349) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31618) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31079) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30809) -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30539) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30000) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30269) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29460) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29730) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28651) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28920) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 28111) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28381) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27841) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27302) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27571) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26762) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27032) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26492) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25953) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26222) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25413) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25683) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25143) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 728) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24604) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24873) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24334) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23794) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24064) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23255) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23524) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22985) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22445) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22715) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 21906) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22175) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21636) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21096) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21366) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 20557) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20826) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20287) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19747) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20017) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 19208) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19477) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18398) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18668) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17859) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18128) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17589) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17049) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17319) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 16510) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16779) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16240) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15700) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15970) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 15161) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15430) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14891) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14351) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14621) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 13812) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 14081) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13542) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13002) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13272) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 12463) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12732) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 12193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11653) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11923) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11114) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11383) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10844) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10304) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10574) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 9765) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10034) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9495) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8955) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9225) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 8416) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8685) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8146) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7606) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7876) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 7067) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7336) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6797) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6257) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6527) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 5718) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5987) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5448) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4908) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5178) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 4369) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4638) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4099) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3559) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3829) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 3020) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3289) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2210) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2480) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 1671) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1940) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1401) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 861) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 322) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 591) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65048) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65318) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64509) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64778) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64239) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63699) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63969) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63160) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63429) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62890) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62350) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62620) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61811) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62080) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61541) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61001) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61271) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60462) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60731) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60192) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59652) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59922) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 59113) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59382) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58843) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58303) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58573) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58033) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57764) -> +[ 3000 ps] WR @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57494) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 696) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56954) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57224) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56415) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56684) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56145) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55605) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55875) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55335) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54796) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55065) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54256) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 54526) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53986) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53447) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53716) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52907) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53177) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52637) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52098) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52367) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51558) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51828) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51288) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50749) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51018) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 50209) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50479) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49400) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49669) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 48860) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49130) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48590) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48051) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48320) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 47511) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47781) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47241) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46971) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 46162) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46432) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45892) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45353) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45622) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44813) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45083) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44543) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44004) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44273) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 43464) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43734) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42655) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42924) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 42115) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42385) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41845) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41306) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41575) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 40766) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 41036) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40496) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39957) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40226) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 39417) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39687) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39147) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38608) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38877) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38068) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38338) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37798) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37259) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37528) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 36719) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36989) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36449) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35910) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36179) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 35370) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35640) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35100) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34561) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34830) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34021) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34291) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33751) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33481) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32672) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32942) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32402) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31863) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32132) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31323) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31593) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31053) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30514) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30783) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 29974) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30244) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29704) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29434) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 28625) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28895) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28355) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27816) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28085) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27276) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27546) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27006) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26467) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26736) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25927) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26197) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25657) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25118) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25387) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24578) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24848) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24308) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23769) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24038) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 23229) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23499) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22959) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22420) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22689) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 21880) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22150) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21610) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21071) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21340) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20801) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20261) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20531) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19991) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] WR @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2582) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 2043) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2312) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1773) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1503) -> [ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1233) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 694) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 963) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 424) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 154) -> +[ 3000 ps] RD @ (0, 960) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65420) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64881) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 65150) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 64611) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64341) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64071) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63532) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63262) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62992) -> [ 3000 ps] RD @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62722) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62183) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62452) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61913) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 61643) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61373) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60834) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61103) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60564) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60294) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60024) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59485) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59754) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 59215) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58945) -> +[ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58675) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 58136) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58405) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57866) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57596) -> [ 3000 ps] RD @ (0, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57326) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56787) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57056) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56517) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56247) -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55977) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55438) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55707) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 55168) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54898) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54628) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54089) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54358) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53819) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53549) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53279) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52740) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53009) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 52470) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52200) -> +[ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51930) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51391) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51660) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51121) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50851) -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50581) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50042) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50311) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49772) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49502) -> [ 3000 ps] RD @ (0, 944) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49232) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48693) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48962) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48423) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48153) -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47883) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47344) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47613) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 47074) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46804) -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46534) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45995) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46264) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 45725) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45455) -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45185) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44646) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44915) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44376) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44106) -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43836) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43297) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43566) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 43027) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42757) -> [ 3000 ps] RD @ (0, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42487) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41948) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42217) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41678) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41408) -> [ 3000 ps] RD @ (0, 936) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41138) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40599) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40868) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40329) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40059) -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39789) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39250) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39519) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 38980) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38710) -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38440) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37901) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38170) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37631) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37361) -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37091) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36552) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36821) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 36282) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36012) -> [ 3000 ps] RD @ (0, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35742) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35203) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35472) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34933) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34393) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34663) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 34123) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33854) -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33584) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33044) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33314) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 32774) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32505) -> [ 3000 ps] RD @ (4, 928) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32235) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31695) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31965) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 31425) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31156) -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30886) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30346) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30616) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 30076) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29807) -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29537) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28997) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29267) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 28727) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28458) -> +[ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28188) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 27648) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27918) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27378) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27109) -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26839) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26299) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26569) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26029) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25760) -> [ 3000 ps] RD @ (4, 920) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25490) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24950) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25220) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 24680) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24411) -> [ 3000 ps] RD @ (4, 920) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24141) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23601) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23871) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23331) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23062) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22792) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22252) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22522) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 21982) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21713) -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21443) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20903) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21173) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20633) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20364) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20094) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19554) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19824) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19284) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19015) -> [ 3000 ps] RD @ (4, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18745) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18205) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18475) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17935) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17666) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17396) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16856) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17126) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16586) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16317) -> [ 3000 ps] RD @ (4, 912) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16047) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15507) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15777) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15237) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14968) -> +[ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14698) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 14158) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14428) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13888) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13619) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13349) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13079) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12809) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] ACT @ (0, 12270) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 12539) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12000) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11460) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11730) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 11190) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10921) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10651) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10111) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10381) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 9841) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9572) -> +[ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9302) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8762) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9032) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8492) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8223) -> [ 3000 ps] RD @ (4, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7953) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7413) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7683) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 7143) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6874) -> [ 3000 ps] RD @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6604) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6064) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6334) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5794) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5525) -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5255) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4715) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4985) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4445) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4176) -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3906) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3366) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3636) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3096) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2827) -> +[ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2557) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2017) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2287) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1747) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1478) -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1208) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 668) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 398) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65395) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 128) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 65125) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64855) -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64585) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 64046) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 64315) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 63776) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63506) -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63236) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62697) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62966) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 62427) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62157) -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61887) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61348) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61617) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61078) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60808) -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60538) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59999) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60268) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59729) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59459) -> [ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59189) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58650) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58919) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58380) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58110) -> +[ 3000 ps] RD @ (0, 888) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57840) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57301) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57570) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 57031) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56761) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56491) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55952) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56221) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 55682) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55412) -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55142) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54603) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54872) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 54333) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 54063) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53793) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53254) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53523) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52984) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52714) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52444) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51905) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52174) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51635) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51365) -> +[ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51095) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50556) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50825) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50286) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50016) -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49746) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49207) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49476) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48937) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48667) -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48397) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47858) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48127) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 47588) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 47318) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47048) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46509) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46778) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 46239) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45969) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45699) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45160) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45429) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44890) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44620) -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44350) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 43811) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44080) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 43541) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43271) -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43001) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42462) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42731) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42192) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41922) -> [ 3000 ps] RD @ (0, 872) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41652) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41113) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41382) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 40843) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 40573) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40303) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39764) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40033) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 39494) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39224) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38954) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38415) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38684) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 38145) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37875) -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37605) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37066) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37335) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 36796) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36526) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36256) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35717) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35986) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35447) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35177) -> [ 3000 ps] RD @ (0, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34907) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34368) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34637) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34098) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33828) -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33558) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33019) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33288) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32749) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32479) -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32209) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31670) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31939) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31400) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30860) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31130) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 30590) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 30321) -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30051) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29511) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29781) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29241) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28972) -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 28702) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28162) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28432) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27892) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27623) -> +[ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27353) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26813) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27083) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 26543) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26274) -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26004) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25464) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25734) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25194) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24925) -> [ 3000 ps] RD @ (4, 856) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24655) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24115) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24385) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 23845) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23576) -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23306) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23036) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22766) -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22227) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22496) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21957) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21417) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21687) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 21147) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20878) -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20608) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 20068) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20338) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19798) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19529) -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19259) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18719) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18989) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 18449) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18180) -> [ 3000 ps] RD @ (4, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17910) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17370) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17640) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 17100) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16831) -> [ 3000 ps] RD @ (4, 848) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16561) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16021) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16291) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15751) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15482) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15212) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 14672) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14942) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 14402) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14133) -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13863) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 13323) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 13593) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13053) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12784) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12514) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11974) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12244) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11704) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11435) -> [ 3000 ps] RD @ (4, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11165) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10625) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10895) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 10355) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10086) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9816) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9276) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9546) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 9006) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8737) -> [ 3000 ps] RD @ (4, 840) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8467) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7927) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8197) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 7657) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7388) -> +[ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7118) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 6578) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 6848) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6308) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6039) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5769) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5229) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5499) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4959) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4690) -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4420) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3880) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4150) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 3610) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3341) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3071) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2531) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 2261) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1992) -> [ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1722) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 1182) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1452) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 912) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 643) -> +[ 3000 ps] RD @ (4, 832) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 373) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 65369) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 103) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 65099) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64830) -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64560) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64020) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64290) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63750) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63481) -> [ 3000 ps] RD @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63211) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62671) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62941) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61862) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 61592) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61322) -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61052) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60513) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 60782) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 60243) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59973) -> [ 3000 ps] RD @ (0, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59703) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59164) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59433) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58894) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58624) -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58354) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57815) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58084) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 57545) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57275) -> [ 3000 ps] RD @ (0, 824) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57005) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56466) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56735) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56196) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55926) -> +[ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55656) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 55117) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 55386) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 54847) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54577) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54307) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53768) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54037) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 53498) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53228) -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52958) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52419) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52688) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 52149) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51879) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51609) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51070) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51339) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50800) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50530) -> [ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50260) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 49721) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49990) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49451) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49181) -> +[ 3000 ps] RD @ (0, 816) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48911) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 48372) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 48641) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48102) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47832) -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47562) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47023) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47292) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46753) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46483) -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46213) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45674) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45943) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 45404) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45134) -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44864) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44325) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44594) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 44055) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43785) -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 43515) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42976) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43245) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42706) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42436) -> +[ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42166) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 41627) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41896) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41357) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41087) -> [ 3000 ps] RD @ (0, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40817) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40278) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40547) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 40008) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39738) -> [ 3000 ps] RD @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39468) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38929) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39198) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 38659) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38389) -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38119) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37580) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37849) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 37310) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37040) -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36770) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36231) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36500) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35961) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35691) -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35421) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 34882) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 35151) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34612) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34342) -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34072) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33533) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33802) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33263) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32993) -> +[ 3000 ps] RD @ (0, 800) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32723) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 32184) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32453) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31914) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31644) -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31374) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30835) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31104) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30565) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30295) -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30025) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 29486) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29755) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 29216) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28946) -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28676) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28137) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28406) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27867) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27327) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27597) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 27057) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26788) -> [ 3000 ps] RD @ (4, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26518) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25978) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26248) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 25708) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 25439) -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25169) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24629) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24899) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24359) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24090) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 23820) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23280) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23550) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 23010) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22741) -> +[ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22471) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21931) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22201) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 21661) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21392) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21122) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20582) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20852) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20312) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20043) -> [ 3000 ps] RD @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19773) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19233) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19503) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 18963) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 18694) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18424) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17884) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18154) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 17614) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17345) -> [ 3000 ps] RD @ (4, 784) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17075) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 16535) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16805) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 16265) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15996) -> +[ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15726) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 15186) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 15456) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 14916) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14647) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14377) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13837) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14107) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 13567) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13298) -> [ 3000 ps] RD @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13028) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 12488) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12758) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 12218) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11949) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11679) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11139) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11409) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 10869) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10600) -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 10330) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 9790) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10060) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 9520) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9251) -> +[ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8981) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 8441) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 8711) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8171) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7902) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7632) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 7092) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7362) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 6822) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6553) -> [ 3000 ps] RD @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6283) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 5743) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6013) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5473) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 5204) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4934) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4394) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4664) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 4124) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3855) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 3585) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3045) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3315) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 2775) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2506) -> +[ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2236) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 1696) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1966) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1426) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1157) -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 887) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 347) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 617) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 77) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65344) -> [ 3000 ps] RD @ (4, 768) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65074) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 64534) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64804) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64264) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63995) -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63725) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63185) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63455) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62915) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62646) -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 62376) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61836) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62106) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 61566) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61297) -> +[ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61027) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 60487) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 60757) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60217) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59948) -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59678) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 59138) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59408) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 58868) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58329) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58598) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 58059) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57789) -> +[ 3000 ps] RD @ (0, 760) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 57519) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56980) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 57249) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 56710) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56440) -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56170) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55631) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55900) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 55361) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55091) -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54821) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54282) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 54551) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 54012) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 53742) -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53472) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52933) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53202) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 52663) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52393) -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 52123) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 51584) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51853) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 51314) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51044) -> +[ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50774) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 50235) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 50504) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49965) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49695) -> [ 3000 ps] RD @ (0, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49425) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48886) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49155) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 48616) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48346) -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48076) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 47537) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47806) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 47267) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46997) -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46727) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46188) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46457) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45918) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45648) -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 45378) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44839) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45108) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 44569) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44299) -> +[ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44029) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43759) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43490) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] ACT @ (4, 42950) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 43220) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42680) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 42141) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42410) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41871) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 41601) -> [ 3000 ps] RD @ (0, 744) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41331) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 40792) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41061) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 40522) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40252) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39982) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39443) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39712) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39173) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38903) -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38633) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38094) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 38363) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 37824) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37554) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37284) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 36745) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37014) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 36475) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36205) -> [ 3000 ps] RD @ (0, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35935) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 35396) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35665) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35126) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 34856) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34586) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34047) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34316) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 33777) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33507) -> [ 3000 ps] RD @ (0, 736) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 33237) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 32698) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32967) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32428) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32158) -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31888) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31349) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31618) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 31079) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30809) -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30539) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30000) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30269) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 29730) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29460) -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29190) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 28651) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28920) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28381) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 28111) -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27841) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27302) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27571) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 27032) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26762) -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 26492) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25953) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26222) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 25683) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25413) -> +[ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25143) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24604) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24873) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24334) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23794) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 24064) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 23524) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23255) -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22985) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22445) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 22715) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 22175) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21906) -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21636) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 21096) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 21366) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 20826) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20557) -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20287) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19747) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20017) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 19477) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 19208) -> [ 3000 ps] RD @ (4, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18938) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 18398) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 18668) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 18128) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 17859) -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17589) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 17049) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 17319) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 16779) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 16510) -> [ 3000 ps] RD @ (4, 720) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 16240) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 15700) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15970) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 15430) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 15161) -> +[ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 14891) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 14351) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 14621) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 14081) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13812) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13542) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 13002) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 13272) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 12732) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12463) -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 12193) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 11653) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 11923) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 11383) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 11114) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10844) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 10304) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 10574) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 10034) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9765) -> [ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 9495) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 8955) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 9225) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 8685) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8416) -> +[ 3000 ps] RD @ (4, 712) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 8146) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 7606) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 7876) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 7336) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 7067) -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6797) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 6257) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 6527) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 5987) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5718) -> [ 3000 ps] RD @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5448) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 4908) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 5178) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 4638) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 4369) -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 4099) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 3559) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3829) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 3289) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 3020) -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 2750) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 2210) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 2480) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 1940) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1671) -> +[ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 1401) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 861) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 1131) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 591) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 322) -> [ 3000 ps] RD @ (4, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 65048) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 65318) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 64778) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64509) -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 64239) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 63699) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 63969) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 63429) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 63160) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62890) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 62350) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 62620) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (4, 62080) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61811) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 61541) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 61001) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 61271) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 60731) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60462) -> +[ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 60192) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 59652) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 59922) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 59382) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 59113) -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58843) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 58303) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 58573) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 58033) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57764) -> [ 3000 ps] RD @ (4, 696) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57494) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 56954) -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 57224) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 56684) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 56415) -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 56145) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 3000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55605) -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 55875) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55335) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 54796) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 55065) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 54526) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 54256) -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53986) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] REF -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 53716) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 53447) -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (4, 52907) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 53177) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52637) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 52098) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 52367) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 51828) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51558) -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 51288) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 50749) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 51018) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 50479) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 50209) -> +[ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 49939) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 49400) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 49669) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 49130) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48860) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48590) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 48051) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 48320) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 47781) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47511) -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 47241) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 46702) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 46971) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 46432) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 46162) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45892) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 45353) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 45622) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 45083) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44813) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 44543) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 44004) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 44273) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 43734) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43464) -> +[ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 43194) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 42655) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 42924) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 42385) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 42115) -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41845) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 41306) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 41575) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 41036) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40766) -> [ 3000 ps] RD @ (0, 680) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40496) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 39957) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 40226) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 39687) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 39417) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 39147) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 38608) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38877) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 38338) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 38068) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 37798) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 37259) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 37528) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 36989) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36719) -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 36449) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 35910) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 36179) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 35640) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35370) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 35100) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 34561) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34830) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 34291) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 34021) -> [ 3000 ps] RD @ (0, 672) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33751) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 33212) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 33481) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 32942) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 32672) -> [ 3000 ps] RD @ (0, 672) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32402) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 31863) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 32132) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 31593) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 31323) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 31053) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 30514) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 30783) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 30244) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29974) -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 29704) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 29165) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 29434) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 28895) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28625) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28355) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 27816) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 28085) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 27546) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27276) -> [ 3000 ps] RD @ (0, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 27006) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 26467) -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 26736) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 26197) -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 25927) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25657) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 25118) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 25387) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] ACT @ (0, 24848) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24578) -> [ 3000 ps] RD @ (0, 664) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 24308) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 3000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 23769) -> [ 6000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 24038) -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 23499) -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 23229) -> +[ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 22959) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 22420) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (4, 22689) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] ACT @ (0, 22150) -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21880) -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21610) -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 3000 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 21071) -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 21340) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> +[ 3000 ps] NOP -> [ 6000 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] ACT @ (0, 20801) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 3000 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 20261) -> [ 6000 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] ACT @ (0, 20531) -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 151884 ns +Time Done: 266424 ns +Average Rate: 49 ns/request +-------------------------------- + + +[ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 6000 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] ACT @ (4, 19991) -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 6000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +FAILED: Address = 75846088, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c9c1ad56c8b3ad56c7a5ad56c697ad, read data = 00000000000000000000000123456789 @ 266556000.0 ps +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> +[ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> +[ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> [ 9000 ps] NOP -> [ 3000 ps] NOP -> + + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 268892 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:12 ; elapsed = 00:06:29 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1772 ; free virtual = 10743 +## quit +INFO: xsimkernel Simulation Memory Usage: 156312 KB (Peak: 210572 KB), Simulation CPU Usage: 388340 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 22:23:32 2025... diff --git a/testbench/xsim/test_5_000_ddr3_1_250_odelay_0_lanes_two_lanes_bus_delay_0.log b/testbench/xsim/test_5_000_ddr3_1_250_odelay_0_lanes_two_lanes_bus_delay_0.log new file mode 100644 index 0000000..5180c57 --- /dev/null +++ b/testbench/xsim/test_5_000_ddr3_1_250_odelay_0_lanes_two_lanes_bus_delay_0.log @@ -0,0 +1,17790 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:594] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:595] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:597] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:598] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:599] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:600] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:846] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:847] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:849] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:850] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:851] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:852] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:853] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1030] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1031] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1033] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1034] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1035] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1036] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=5... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=5... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 11 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 128 +wb_sel_bits = 16 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 1 +WRITE_SLOT = 0 +ACTIVATE_SLOT = 2 +PRECHARGE_SLOT = 3 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 11 +CWL = 8 +PRECHARGE_TO_ACTIVATE_DELAY = 2 +ACTIVATE_TO_WRITE_DELAY = 3 +ACTIVATE_TO_READ_DELAY = 2 +ACTIVATE_TO_PRECHARGE_DELAY = 6 +ACTIVATE_TO_ACTIVATE_DELAY = 1 +READ_TO_WRITE_DELAY = 2 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 0 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 4 +WRITE_TO_PRECHARGE_DELAY = 5 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 7 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] MRS -> +[ 1250 ps] MRS -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.cmd_task at time 1464375.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] MRS -> ddr3_dimm_micron_sim.ddr3_0.cmd_task: at time 1829375.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] ZQC -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 105) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 110) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 117) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 122) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 125) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 127) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 132) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 135) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 137) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 140) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 142) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 147) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 157) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 162) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 197) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 105) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 172) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> +[ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 40630 ns +Time Done: 53350 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> FAILED: Address = 1151, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092f75e2592f6502592f5422592f43425, read data = 00000000000000000000000123456789 @ 53395000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (2, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] RD @ (2, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (6, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> + +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 53350 ns +Time Done: 65675 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65535) -> FAILED: Address = 33555583, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000faf75ef5faf650f5faf542f5faf434f5, read data = 00000000000000000000000123456789 @ 65720000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (1, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (2) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65535) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65535) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 65535) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 65535) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 65675 ns +Time Done: 78445 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> FAILED: Address = 67108991, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521a8fa4521981a4521873a4521765a4, read data = 00000000000000000000000123456789 @ 78490000.0 ps +[ 2500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2582) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2043) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1503) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1233) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 963) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65420) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64881) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64611) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64341) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63532) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63262) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62722) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62452) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62183) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61643) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61373) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60564) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60294) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60024) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59485) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59215) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58945) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58405) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57866) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57326) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57056) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56787) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56247) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55977) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55707) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54898) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54628) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54089) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53819) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53549) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53009) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52740) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52470) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51930) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51660) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51391) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50851) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50581) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50311) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49772) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49502) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48693) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48423) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47613) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47074) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46534) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45995) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45455) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45185) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44915) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43836) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43297) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42757) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41948) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41678) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41138) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40868) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40599) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40059) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39789) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39519) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38980) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37901) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37361) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36821) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36282) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35742) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35203) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34663) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34393) -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33854) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33314) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33044) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32505) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31965) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31425) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31156) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30886) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30346) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29807) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29267) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28997) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28727) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27109) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26839) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26569) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26029) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25490) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24950) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24411) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23871) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23601) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23331) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22252) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21713) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21443) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20633) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20364) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19554) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19015) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18475) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18205) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17935) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17396) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16317) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16047) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15237) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14968) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14698) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14158) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13619) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13079) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12809) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12539) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11460) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10921) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10651) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9841) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9572) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8762) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8223) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7683) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7413) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6604) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6064) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5525) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5255) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4985) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4445) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3366) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2827) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2557) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2017) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1747) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 668) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65395) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65125) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64585) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64315) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64046) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63506) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62966) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62697) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62427) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62157) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61887) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61348) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61078) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60268) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59999) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59729) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59189) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58919) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58650) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58110) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57570) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57301) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57031) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56761) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56491) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55682) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55412) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54603) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54333) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53793) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53523) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53254) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52714) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52444) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52174) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51635) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51365) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51095) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50556) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50286) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49476) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49207) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48937) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48397) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48127) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47858) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47318) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46778) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46509) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46239) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45969) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45699) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44620) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44080) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43811) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43541) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43001) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42731) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42462) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41922) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41652) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41382) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40843) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40573) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40303) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38684) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37605) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37335) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37066) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36526) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35986) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35447) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35177) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34907) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33828) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33019) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32749) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32209) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31939) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31670) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31130) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30590) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30321) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29781) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29511) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28972) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27892) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27623) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27353) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26813) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26543) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26274) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25734) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25194) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24925) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24655) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24385) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23036) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22227) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21957) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21417) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21147) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20878) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20338) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19798) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19529) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19259) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18989) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18719) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17910) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17100) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16831) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16021) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15751) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15482) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14942) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14402) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13863) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13593) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13323) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12514) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12244) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11435) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10625) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10355) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10086) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9546) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9276) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9006) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8737) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8467) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8197) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7927) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7388) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6308) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6039) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5229) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4959) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4690) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4150) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3610) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3341) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2801) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2531) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1722) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1452) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 643) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65369) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65099) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64830) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64290) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63750) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63211) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62941) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62671) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61052) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60782) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60513) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59973) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59703) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59433) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58894) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58354) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58084) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57815) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57545) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57275) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56735) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56466) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56196) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55386) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54577) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54307) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54037) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53498) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53228) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52958) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52419) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52149) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51879) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51339) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51070) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50260) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49990) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49721) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49181) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48911) -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48641) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48102) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47562) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47292) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47023) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46753) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46483) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45943) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45404) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44594) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44325) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43785) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43515) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43245) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42706) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42436) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42166) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41627) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41357) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41087) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40547) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40278) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39468) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38929) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38389) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38119) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37849) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37310) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37040) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36770) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36500) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36231) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35961) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35691) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35151) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34612) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34072) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33802) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33533) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32993) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32723) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32453) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31914) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31644) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31374) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30835) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30565) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30295) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29755) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29486) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28676) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28406) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27597) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27327) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27057) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26518) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25978) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25708) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25439) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25169) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24899) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24359) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24090) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23820) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23010) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22201) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21931) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21661) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21122) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20582) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19773) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19503) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18963) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18694) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17884) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17614) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17345) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16805) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16535) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16265) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15726) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15186) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14377) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14107) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13567) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13298) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13028) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 12218) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11409) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11139) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10869) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10330) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10060) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9790) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9251) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8981) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8711) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8171) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7902) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7092) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6822) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6553) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6013) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5743) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5473) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4934) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4394) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3855) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3585) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3315) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2775) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2506) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2236) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1426) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 617) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 347) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 77) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65074) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64534) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63995) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63725) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63455) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62915) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61836) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61297) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60757) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60487) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59678) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59138) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58598) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58329) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58059) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57519) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57249) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56980) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55900) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55361) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55091) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54821) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54282) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53742) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53202) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52933) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52663) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51853) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51044) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49965) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49695) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49425) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48886) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48346) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47806) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47537) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47267) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46727) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46188) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44569) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44299) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44029) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43490) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42950) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42410) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42141) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41871) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41331) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41061) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40252) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38903) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38633) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38094) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37554) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37014) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36745) -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36475) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36205) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35935) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35665) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35396) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34316) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33507) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33237) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32698) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32158) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31618) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31349) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31079) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30539) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30269) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29460) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28111) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27841) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27302) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26762) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26222) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25953) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25683) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24873) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24604) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24064) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23524) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22985) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22715) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22445) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21906) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21366) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20826) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20557) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19747) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19477) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18668) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18398) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17589) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17319) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17049) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16510) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15970) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15430) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15161) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14891) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14351) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14081) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13812) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13002) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12732) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11923) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11653) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11114) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10844) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10574) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10034) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9765) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9495) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8955) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8685) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7876) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7606) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6797) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6527) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6257) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5718) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5178) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4638) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4369) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3559) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3020) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2210) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1940) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1401) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1131) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 861) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 322) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65318) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 65048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64509) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64239) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63699) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63429) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62620) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61541) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61271) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61001) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60462) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59922) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59382) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59113) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58843) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58303) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57764) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56684) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55875) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55605) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55065) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54526) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53986) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53716) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53447) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52907) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52637) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52367) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51828) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51558) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50749) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50479) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50209) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49669) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49130) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47511) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46971) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45892) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45353) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45083) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44813) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44273) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43734) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42924) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42655) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41575) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41036) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39957) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39687) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39417) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38877) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38338) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37798) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37259) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36719) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36179) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34291) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34021) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33481) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32942) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32402) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32132) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31863) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31323) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30783) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30244) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28895) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28625) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28085) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27546) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27276) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27006) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26467) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25927) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25387) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24578) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24308) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23499) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23229) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22689) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22150) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21610) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21340) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20531) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19991) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2582) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1503) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1233) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 963) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65420) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64881) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64611) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64341) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63801) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63532) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63262) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62722) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62452) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62183) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61643) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61373) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60564) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60294) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60024) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59485) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59215) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58945) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58405) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57866) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57326) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57056) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56787) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56247) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55977) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55707) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54898) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54628) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54089) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53819) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53549) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53009) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52740) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52470) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51930) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51660) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51391) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50851) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50581) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50311) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49772) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49502) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48693) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48423) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47613) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47074) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46534) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45995) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45455) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45185) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44915) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43836) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43297) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42757) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41948) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41678) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41138) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40868) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40599) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40059) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39519) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38980) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37631) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37361) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36821) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36282) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35742) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35203) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34663) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34393) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33044) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32505) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31965) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31425) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31156) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30886) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30346) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30076) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29807) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29267) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28727) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27109) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26839) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26569) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] ACT @ (4, 26029) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25490) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24950) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24411) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23871) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23331) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22522) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22252) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21713) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21443) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20633) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20364) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19554) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19015) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18475) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18205) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17935) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17396) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16317) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16047) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15777) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15237) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14698) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13079) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 12809) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12539) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11460) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10921) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10651) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9841) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9572) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8762) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8223) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7683) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7143) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6874) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6604) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6334) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6064) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5525) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5255) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4985) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4445) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3906) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3366) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3096) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2827) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2287) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2017) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1747) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 668) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65395) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65125) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64855) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64585) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64315) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64046) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63506) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62427) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61887) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61617) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61348) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61078) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60268) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59999) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59729) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59189) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58919) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58650) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58110) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57570) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57301) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57031) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56761) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56491) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55682) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55412) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54603) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54333) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53793) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53523) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53254) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52714) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52444) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52174) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51635) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51365) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51095) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50556) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50286) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49746) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49476) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49207) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48937) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48397) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47858) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47318) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46778) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46239) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45699) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44890) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44620) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44080) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43811) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43541) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43001) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42731) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42462) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41922) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41652) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41382) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40843) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40573) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40303) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39764) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38684) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38145) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37875) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37605) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37335) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37066) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36526) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35986) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35447) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34907) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34637) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34098) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33828) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33019) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32749) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32209) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31670) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30590) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30321) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29781) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29511) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28972) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27892) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27623) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27353) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27083) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26813) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26543) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26274) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25734) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24655) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23036) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22227) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21957) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21417) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20878) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20338) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19798) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19259) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18989) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18719) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17910) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17100) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16831) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16021) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15482) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14942) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14402) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13863) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13593) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13323) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12514) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12244) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11435) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11165) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10625) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10355) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10086) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9546) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9276) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9006) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8467) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7927) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7388) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7118) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6308) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6039) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5229) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4690) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3610) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3341) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2801) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2531) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1722) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1452) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 643) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 373) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65369) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65099) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64830) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64290) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64020) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63211) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62941) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62671) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61052) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60782) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60513) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59973) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59703) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59433) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58894) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58354) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57815) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57275) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57005) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56735) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56466) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56196) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55386) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54577) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54307) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54037) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53498) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53228) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52958) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52419) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52149) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51879) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51339) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51070) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50260) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49990) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49721) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49181) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48911) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48641) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48102) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47562) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47023) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46483) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45943) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45404) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44594) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44325) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43785) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43515) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43245) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42706) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42436) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42166) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41627) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41357) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41087) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40547) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40278) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39468) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38929) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38389) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37849) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37580) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37310) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37040) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36770) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36231) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35961) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35691) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35151) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34612) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34072) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33802) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33533) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32993) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32723) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32453) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31914) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31644) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31374) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30835) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30565) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30295) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30025) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29755) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29486) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28676) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28406) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27597) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27327) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27057) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26518) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25978) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25439) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25169) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24899) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24359) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24090) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23820) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23010) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22741) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22471) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22201) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21931) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21661) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21122) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20582) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20043) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19503) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18963) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18694) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17884) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17614) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17345) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16805) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16265) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15726) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15186) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14377) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14107) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13567) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13298) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13028) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12218) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11679) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11409) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11139) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10869) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10330) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10060) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9790) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9251) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8981) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8711) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8171) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7902) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7362) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7092) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6822) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6553) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6013) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5743) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5473) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4934) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4394) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3855) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3585) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3315) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2775) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2506) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1426) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 617) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 347) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 77) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65074) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64804) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64534) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63995) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63725) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63455) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62915) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61836) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61297) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60757) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60487) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59678) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58598) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58059) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57519) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57249) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56980) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56170) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55900) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55361) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54821) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54282) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53742) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53202) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52933) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52663) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52123) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51853) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51044) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49965) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49695) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49425) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48886) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48346) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47806) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47267) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46727) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46188) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45378) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44569) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44299) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44029) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43490) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42950) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42410) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41871) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41331) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41061) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40252) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38633) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38363) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37554) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37014) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36745) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36475) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35935) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35665) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35396) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34316) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34047) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33507) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33237) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32698) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31618) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31079) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30539) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30269) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29460) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29190) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28111) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27841) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27302) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26762) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26222) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25683) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24873) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24604) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24064) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23524) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22985) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22445) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21636) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21366) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20826) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20557) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19747) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19477) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18668) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18398) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17859) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17589) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17319) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17049) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16510) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15970) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15430) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15161) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14891) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14621) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14351) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14081) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13812) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13002) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12732) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12193) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11923) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11653) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11114) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10844) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10574) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10034) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9765) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9495) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8955) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8685) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7876) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7606) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6797) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6527) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6257) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5718) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4638) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4369) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3559) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3020) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2210) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1940) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1401) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 861) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 322) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65318) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64509) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64239) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63699) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63429) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62620) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61541) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61271) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61001) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60462) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59922) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59382) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59113) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58843) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58303) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56684) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55875) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55605) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55065) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54526) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53986) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53716) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53447) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52907) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52637) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52367) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51828) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51558) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50749) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50479) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50209) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49669) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49130) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47511) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46971) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45892) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45353) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45083) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44813) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44273) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44004) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43734) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42924) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42655) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41575) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41036) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40766) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39957) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39417) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38877) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38338) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37798) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37259) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36719) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36449) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36179) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34021) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33212) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32942) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32402) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31863) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31323) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30783) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30244) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28895) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28625) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28085) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27546) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27006) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26467) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25927) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25657) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25387) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24578) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24308) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23769) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23499) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23229) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22689) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22150) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21610) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21340) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20531) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 78445 ns +Time Done: 197870 ns +Average Rate: 51 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19991) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> FAILED: Address = 75846088, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c9c1ad56c8b3ad56c7a5ad56c697ad, read data = 00000000000000000000000123456789 @ 197990000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 200065 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:18 ; elapsed = 00:09:56 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 5011 ; free virtual = 10236 +## quit +INFO: xsimkernel Simulation Memory Usage: 154168 KB (Peak: 208428 KB), Simulation CPU Usage: 594330 ms +INFO: [Common 17-206] Exiting xsim at Sat Feb 1 04:10:12 2025... diff --git a/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_eight_lanes_bus_delay_0.log b/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_eight_lanes_bus_delay_0.log new file mode 100644 index 0000000..fcec0a4 --- /dev/null +++ b/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_eight_lanes_bus_delay_0.log @@ -0,0 +1,32409 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:264] +WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:251] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=5... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=5... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_module_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 57 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 512 +wb_sel_bits = 64 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 1 +WRITE_SLOT = 0 +ACTIVATE_SLOT = 2 +PRECHARGE_SLOT = 3 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 11 +CWL = 8 +PRECHARGE_TO_ACTIVATE_DELAY = 2 +ACTIVATE_TO_WRITE_DELAY = 3 +ACTIVATE_TO_READ_DELAY = 2 +ACTIVATE_TO_PRECHARGE_DELAY = 6 +ACTIVATE_TO_ACTIVATE_DELAY = 1 +READ_TO_WRITE_DELAY = 2 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 0 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 4 +WRITE_TO_PRECHARGE_DELAY = 5 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 7 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U1R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [101350 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U1R1.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R1.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R1.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R1.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R1.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R1.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R1.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R1.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] ZQC -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36296325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36301325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36306325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36311325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36316325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36321325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36326325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36331325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36336325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36341325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36346325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36351325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36356325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36361325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36366325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36371325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36376325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36381325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36406325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36411325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36416325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36421325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36426325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36431325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36436325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36441325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36446325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36451325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36456325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36461325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36466325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36471325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36476325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36481325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36486325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36491325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36516325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36521325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36526325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36531325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36536325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36541325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36546325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36551325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36556325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36561325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36566325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36571325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36576325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36581325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36586325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36591325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36596325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 36601325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36626402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36636402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36646402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36656402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36666402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36676402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36686402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36696402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36706402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36741480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36746480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36751480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36756480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36761480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36766480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36771480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36776480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36781480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36786480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36791480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36796480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36801480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36806480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36811480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36816480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36821480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36826480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37181950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37186950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37191950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37196950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37201950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37206950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37211950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37216950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37221950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37226950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37231950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37236950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37241950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37246950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37251950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37256950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37261950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37266950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37291950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37296950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37301950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37306950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37311950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37316950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37321950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37326950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37331950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37336950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37341950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37346950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37351950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37356950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37361950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37366950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37371950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37376950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37401950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37406950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37411950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37416950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37421950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37426950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37431950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37436950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37441950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37446950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37451950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37456950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37461950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37466950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37471950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37476950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37481950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 37486950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38066325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38071325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38076325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38081325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38086325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38091325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38096325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38101325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38106325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38111325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38116325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38121325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38126325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38131325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38136325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38141325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38146325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38151325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38176325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38181325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38186325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38191325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38196325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38201325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38206325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38211325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38216325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38221325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38226325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38231325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38236325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38241325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38246325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38251325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38256325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38261325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38286325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38291325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38296325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38301325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38306325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38311325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38316325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38321325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38326325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38331325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38336325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38341325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38346325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38351325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38356325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38361325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38366325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38371325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38396402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38406402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38416402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38426402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38436402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38446402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38456402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38466402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38476402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38511480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38516480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38521480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38526480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38531480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38536480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38541480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38546480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38551480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38556480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38561480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38566480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38571480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38576480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38581480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38586480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38591480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38596480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38951950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38956950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38961950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38966950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38971950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38976950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38981950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38986950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38991950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 38996950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39001950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39006950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39011950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39016950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39021950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39026950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39031950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39036950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39061950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39066950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39071950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39076950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39081950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39086950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39091950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39096950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39101950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39106950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39111950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39116950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39121950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39126950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39131950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39136950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39141950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39146950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39171950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39176950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39181950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39186950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39191950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39196950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39201950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39206950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39211950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39216950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39221950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39226950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39231950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39236950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39241950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39246950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39251950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 39256950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39836325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39841325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39846325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39851325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39856325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39861325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39866325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39871325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39876325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39881325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39886325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39891325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39896325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39901325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39906325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39911325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39916325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39921325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39946325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39951325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39956325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39961325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39966325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39971325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39976325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39981325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39986325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39991325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 39996325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 39997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 39997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40001325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40006325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40011325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40016325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40021325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40026325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40031325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40056325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40061325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40066325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40071325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40076325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40081325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40086325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40091325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40096325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40101325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40106325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40111325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40116325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40121325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40126325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40131325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40136325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40141325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40166402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40176402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40186402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40196402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40206402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40216402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40226402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40236402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40246402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40281480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40286480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40291480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40296480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40301480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40306480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40311480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40316480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40321480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40326480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40331480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40336480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40341480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40346480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40351480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40356480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40361480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 40366480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40721950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40726950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40731950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40736950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40741950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40746950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40751950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40756950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40761950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40766950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40771950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40776950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40781950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40786950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40791950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40796950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40801950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40806950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40831950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40836950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40841950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40846950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40851950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40856950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40861950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40866950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40871950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40876950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40881950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40886950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40891950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40896950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40901950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40906950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40911950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40916950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40941950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40946950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40951950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40956950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40961950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40966950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40971950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40976950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40981950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40986950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40991950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 40996950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 40997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 40997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 41001950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 41006950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 41011950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 41016950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 41021950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 41026950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41606325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41611325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41616325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41621325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41626325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41631325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41636325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41641325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41646325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41651325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41656325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41661325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41666325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41671325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41676325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41681325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41686325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41691325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41716325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41721325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41726325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41731325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41736325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41741325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41746325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41751325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41756325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41761325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41766325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41771325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41776325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41781325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41786325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41791325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41796325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41801325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41826325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41831325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41836325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41841325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41846325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41851325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41856325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41861325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41866325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41871325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41876325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41881325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41886325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41891325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41896325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41901325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41906325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 41911325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41936402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41946402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41956402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41966402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41976402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41986402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 41996402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 41997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 41997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 41997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42006402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42016402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42051480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42056480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42061480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42066480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42071480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42076480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42081480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42086480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42091480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42096480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42101480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42106480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42111480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42116480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42121480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42126480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42131480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42136480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42491950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42496950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42501950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42506950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42511950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42516950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42521950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42526950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42531950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42536950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42541950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42546950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42551950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42556950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42561950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42566950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42571950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42576950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42601950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42606950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42611950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42616950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42621950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42626950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42631950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42636950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42641950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42646950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42651950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42656950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42661950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42666950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42671950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42676950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42681950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42686950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42711950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42716950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42721950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42726950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42731950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42736950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42741950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42746950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42751950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42756950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42761950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42766950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42771950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42776950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42781950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42786950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42791950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 42796950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43376325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43381325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43386325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43391325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43396325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43401325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43406325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43411325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43416325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43421325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43426325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43431325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43436325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43441325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43446325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43451325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43456325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43461325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43486325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43491325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43496325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43501325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43506325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43511325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43516325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43521325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43526325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43531325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43536325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43541325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43546325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43551325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43556325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43561325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43566325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43571325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43596325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43601325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43606325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43611325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43616325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43621325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43626325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43631325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43636325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43641325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43646325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43651325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43656325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43661325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43666325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43671325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43676325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43681325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43706402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43716402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43726402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43736402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43746402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43756402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43766402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43776402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43786402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43821480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43826480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43831480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43836480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43841480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43846480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43851480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43856480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43861480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43866480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43871480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43876480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43881480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43886480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43891480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43896480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43901480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 43906480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44261950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44266950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44271950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44276950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44281950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44286950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44291950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44296950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44301950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44306950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44311950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44316950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44321950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44326950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44331950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44336950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44341950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44346950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44371950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44376950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44381950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44386950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44391950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44396950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44401950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44406950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44411950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44416950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44421950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44426950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44431950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44436950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44441950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44446950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44451950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44456950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44481950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44486950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44491950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44496950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44501950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44506950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44511950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44516950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44521950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44526950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44531950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44536950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44541950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44546950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44551950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44556950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44561950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44566950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 44997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45146325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45151325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45156325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45161325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45166325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45171325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45176325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45181325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45186325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45191325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45196325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45201325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45206325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45211325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45216325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45221325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45226325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45231325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45256325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45261325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45266325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45271325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45276325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45281325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45286325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45291325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45296325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45301325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45306325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45311325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45316325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45321325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45326325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45331325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45336325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45341325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45366325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45371325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45376325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45381325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45386325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45391325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45396325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45401325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45406325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45411325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45416325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45421325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45426325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45431325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45436325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45441325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45446325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45451325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45476402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45486402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45496402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45506402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45516402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45526402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45536402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45546402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45556402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45591480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45596480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45601480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45606480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45611480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45616480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45621480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45626480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45631480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45636480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45641480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45646480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45651480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45656480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45661480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45666480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45671480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 45676480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 45997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46031950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46036950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46041950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46046950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46051950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46056950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46061950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46066950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46071950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46076950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46081950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46086950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46091950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46096950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46101950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46106950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46111950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46116950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46141950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46146950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46151950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46156950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46161950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46166950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46171950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46176950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46181950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46186950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46191950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46196950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46201950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46206950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46211950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46216950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46221950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46226950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46251950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46256950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46261950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46266950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46271950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46276950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46281950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46286950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46291950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46296950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46301950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46306950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46311950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46316950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46321950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46326950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46331950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46336950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46337026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46916325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46921325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46926325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46931325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46936325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46941325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46946325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46951325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46956325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46961325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46966325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46971325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46976325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46981325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46986325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46991325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46996325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 46997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 46997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47001325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47026325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47031325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47036325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47041325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47046325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47051325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47056325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47061325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47066325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47071325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47076325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47081325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47086325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47091325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47096325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47101325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47106325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47111325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47136325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47141325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47146325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47151325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47156325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47161325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47166325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47171325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47176325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47181325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47186325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47191325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47196325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47201325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47206325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47211325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47216325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47221325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47222026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47246402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47256402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47266402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47276402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47286402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47296402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47306402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47316402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47326402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47361480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47366480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47371480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47376480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47381480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47386480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47391480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47396480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47401480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47406480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47411480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47416480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47421480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47426480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47431480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47436480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47441480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 47446480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47447026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47557026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47667026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47777026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47801950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47806950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47811950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47816950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47821950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47826950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47831950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47836950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47841950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47846950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47851950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47856950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47861950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47866950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47871950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47876950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47881950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47886950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47887026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47911950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47916950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47921950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47926950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47931950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47936950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47941950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47946950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47951950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47956950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47961950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47966950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47971950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47976950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47981950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47986950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47991950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47996950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 47997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 47997026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48021950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48026950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48031950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48036950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48041950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48046950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48051950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48056950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48061950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48066950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48071950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48076950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48081950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48086950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48091950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48096950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48101950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48106950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48107026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48332026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48442026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48552026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48662026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48686325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48691325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48696325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48701325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48706325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48711325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48716325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48721325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48726325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48731325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48736325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48741325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48746325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48751325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48756325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48761325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48766325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48771325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48772026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48796325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48801325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48806325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48811325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48816325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48821325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48826325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48831325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48836325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48841325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48846325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48851325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48856325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48861325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48866325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48871325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48876325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48881325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48882026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48906325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48911325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48916325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48921325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48926325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48931325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48936325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48941325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48946325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48951325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48956325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48961325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48966325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48971325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48976325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48981325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48986325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 48991325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 48992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 48992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 48992026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49016402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49026402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49036402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49046402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49056402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49066402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49076402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49086402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49096402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49097026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49102026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49131480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49136480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49141480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49146480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49151480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49156480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49161480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49166480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49171480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49176480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49181480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49186480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49191480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49196480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49201480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49206480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49207026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49211480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49212026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49216480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49217026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49317026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49322026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49327026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49432026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49437026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49547026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49571950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49576950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49581950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49586950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49591950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49596950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49601950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49606950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49611950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49616950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49621950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49626950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49631950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49636950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49641950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49646950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49651950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49656950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49657026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49681950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49686950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49691950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49696950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49701950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49706950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49711950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49716950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49721950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49726950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49731950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49736950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49741950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49746950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49751950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49756950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49761950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49766950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49767026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49791950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49796950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49801950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49806950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49811950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49816950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49821950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49826950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49831950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49836950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49841950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49846950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49851950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49856950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49861950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49866950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49871950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 49876950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49877026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49987026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 102) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 107) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 172) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 179) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 181) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 186) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 191) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 196) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 116) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 151) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 156) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 161) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 166) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 171) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 181) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 186) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 191) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 196) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> + +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 105875 ns +Time Done: 118565 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 118610000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> +[ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 118565 ns +Time Done: 130880 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 130925000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (1) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32767) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (2) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32767) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 32) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 130880 ns +Time Done: 143635 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 143680000.0 ps +[ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 694) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60834) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55438) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39250) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33854) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28458) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23062) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17666) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12270) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6874) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1478) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61617) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56221) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50825) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34637) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57005) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51609) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46213) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40817) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35421) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30025) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24629) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19233) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36205) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30809) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20017) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14621) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3829) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15405) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10009) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4613) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53961) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48565) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32377) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26981) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21585) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16189) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10793) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5397) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61220) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48269) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42873) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41794) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38556) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37477) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32081) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31002) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28844) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26685) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25606) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24527) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20210) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18052) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16972) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15893) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14814) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13735) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10497) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9418) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8339) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7260) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64162) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62004) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60924) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39340) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32865) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28548) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17756) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 12360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6964) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61708) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55233) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50916) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37966) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33649) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31490) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30411) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29332) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28253) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27174) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22857) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21778) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17461) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16382) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14223) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12065) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10986) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8827) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7748) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6669) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5590) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4510) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3431) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1273) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64650) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63571) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60334) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59254) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58175) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56017) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54938) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53858) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52779) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51700) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50621) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49542) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48462) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47383) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44146) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43066) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41987) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39829) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38750) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37670) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36591) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34433) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31195) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30116) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27957) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19324) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18245) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8532) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63276) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52484) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47088) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41692) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30900) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9316) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64060) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59743) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53268) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42476) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40317) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39238) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38159) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33842) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32763) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31684) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30604) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29525) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27367) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20891) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19812) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17654) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15495) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13337) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12258) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4703) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2545) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 387) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64843) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59447) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48655) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43259) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37863) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32467) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21675) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18438) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16279) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10883) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 91) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60231) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54835) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49439) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42964) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39726) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36489) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34330) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30014) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27855) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25697) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24618) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23538) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22459) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20301) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19221) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18142) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17063) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14905) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13825) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12746) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11667) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9509) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7350) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6271) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4113) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1954) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 875) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65332) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64253) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62094) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61015) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58857) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56698) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54540) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50223) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46985) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45906) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44827) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43748) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42669) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41589) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40510) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39431) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37273) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34035) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31877) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28639) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23243) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17847) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12451) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7055) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1659) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65036) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 59640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 54244) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 48848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 43452) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 38056) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 32660) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 27264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 21868) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 16472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 5680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 2443) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 60424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59345) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 57187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 55028) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 50711) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 49632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 48553) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 47474) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 44236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 43157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 42078) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40999) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 39919) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 38840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 37761) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 36682) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35603) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 33444) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32365) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 31286) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30207) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 29127) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 28048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 22652) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 21573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 20494) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 18335) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 17256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 16177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 15098) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14019) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 12939) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 11860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 10781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 9702) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 8622) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 6464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 5385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 1068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 65525) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 61208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 59050) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 55812) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52574) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 50416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 49337) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 45020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 39624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 34228) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32070) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 28832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 23436) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 22357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 18040) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 16961) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 13723) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 12644) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 7248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 6169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 1852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 61992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 56596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52279) -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 45804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 40408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 37170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 35012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32853) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 31774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 29616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 28537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 24220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 23141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19903) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 18824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 17745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 16665) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 15586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14507) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 13428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 12349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11269) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 10190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 9111) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 8032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 6953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5873) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 65150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58675) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55438) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31695) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28458) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1478) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56221) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49746) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46509) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43271) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19529) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5499) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60243) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57005) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50530) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36500) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30025) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26788) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12758) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6283) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54551) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44839) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27571) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17859) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3829) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45622) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35910) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18642) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15405) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 12167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8930) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49644) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46406) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39931) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19426) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16189) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2159) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49349) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48269) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45032) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42873) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41794) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38556) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37477) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32081) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31002) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28844) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27764) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26685) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25606) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24527) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21289) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20210) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18052) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16972) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15893) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14814) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13735) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10497) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9418) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8339) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7260) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5101) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35023) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32865) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31786) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28548) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25311) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22073) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4806) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61708) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55233) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46599) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43362) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37966) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33649) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31490) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30411) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29332) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28253) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27174) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22857) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17461) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16382) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14223) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12065) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10986) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9906) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8827) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7748) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6669) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4510) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3431) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1273) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64650) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63571) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62492) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59254) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56017) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53858) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52779) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51700) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50621) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49542) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48462) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47383) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45225) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43066) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41987) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39829) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38750) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37670) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36591) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34433) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27957) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18245) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10690) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7453) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4215) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56801) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55721) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52484) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49246) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46009) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31979) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22266) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4999) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62980) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59743) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56505) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53268) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42476) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40317) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39238) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38159) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37080) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33842) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32763) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31684) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30604) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29525) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27367) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26287) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20891) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19812) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17654) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15495) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13337) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12258) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10099) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6862) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5783) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 387) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59447) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50814) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44339) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42180) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37863) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32467) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30309) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23834) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21675) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18438) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 91) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62390) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60231) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49439) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42964) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41885) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39726) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36489) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35410) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30014) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27855) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25697) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24618) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23538) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22459) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20301) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19221) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17063) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13825) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12746) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11667) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9509) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8429) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6271) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1954) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 875) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65332) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64253) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63173) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61015) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58857) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56698) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54540) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50223) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46985) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44827) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43748) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42669) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41589) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40510) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39431) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37273) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34035) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31877) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28639) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25401) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1659) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65036) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 62878) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 54244) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 51007) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 47769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 44532) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 30502) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 27264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 24027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 20789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 17552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 6759) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 3522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 2443) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 62583) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 60424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 59345) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 57187) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 55028) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53949) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 50711) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 49632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 48553) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 47474) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 45315) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 44236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 43157) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 42078) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40999) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 39919) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 38840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 37761) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 36682) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 35603) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 33444) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32365) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 31286) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30207) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 29127) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 28048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 22652) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 21573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 20494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 18335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 17256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 16177) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 15098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14019) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 12939) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 11860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 10781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 9702) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 8622) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 6464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 5385) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 4306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 1068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 65525) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 59050) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 52574) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 49337) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 46099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 42862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 34228) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32070) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 28832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 25594) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 23436) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 22357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20198) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 19119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 16961) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 15882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 13723) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 7248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 6169) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 5089) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 1852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 64150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 60913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 57675) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52279) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 43645) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 40408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 37170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35012) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 33933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32853) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 31774) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 29616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 28537) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24220) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 23141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 19903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 17745) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 16665) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 15586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14507) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 13428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 12349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11269) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 10190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 9111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 8032) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 143635 ns +Time Done: 262555 ns +Average Rate: 51 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 6953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5873) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 262675000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 264750 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:26 ; elapsed = 00:43:35 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 4923 ; free virtual = 10149 +## quit +INFO: xsimkernel Simulation Memory Usage: 229388 KB (Peak: 287184 KB), Simulation CPU Usage: 2610810 ms +INFO: [Common 17-206] Exiting xsim at Sat Feb 1 03:03:50 2025... diff --git a/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_eight_lanes_bus_delay_1.log b/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_eight_lanes_bus_delay_1.log new file mode 100644 index 0000000..e36185d --- /dev/null +++ b/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_eight_lanes_bus_delay_1.log @@ -0,0 +1,34575 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:264] +WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:251] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=5... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=5... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=50) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=100) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=150) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=200) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=250) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=300) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=350) +Compiling module xil_defaultlib.ddr3_module_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 57 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 512 +wb_sel_bits = 64 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 1 +WRITE_SLOT = 0 +ACTIVATE_SLOT = 2 +PRECHARGE_SLOT = 3 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 11 +CWL = 8 +PRECHARGE_TO_ACTIVATE_DELAY = 2 +ACTIVATE_TO_WRITE_DELAY = 3 +ACTIVATE_TO_READ_DELAY = 2 +ACTIVATE_TO_PRECHARGE_DELAY = 6 +ACTIVATE_TO_ACTIVATE_DELAY = 1 +READ_TO_WRITE_DELAY = 2 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 0 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 4 +WRITE_TO_PRECHARGE_DELAY = 5 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 7 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U1R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [101350 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U1R1.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R1.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R1.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R1.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R1.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R1.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R1.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R1.reset at time 455200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 455250.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 455300.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 455350.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 455400.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 455450.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 455500.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 455550.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1464550.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1464600.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1464650.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1464700.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1464750.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1464800.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1464850.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1464900.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1829550.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1829600.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1829650.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1829700.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1829750.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1829800.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1829850.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1829900.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] ZQC -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28646050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28646100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28651050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28651100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28651150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28656050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28656100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28656150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28661050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28661100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28661150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28666050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28666100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28666150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28671050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28671100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28671150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28676034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28676034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28676034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28676050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28676100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28676150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28756050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28756100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28761050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28761100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28761150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28766050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28766100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28766150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28771050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28771100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28771150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28776050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28776100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28776150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28781050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28781100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28781150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28786034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28786034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28786034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28786050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28786100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28786150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28791034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28791034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28791034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28791050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28791100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28791150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28866050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28866100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28866150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28871050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28871100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28871150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28876050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28876100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28876150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28881050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28881100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28881150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28886050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28886100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28886150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28891050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28891100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28891150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28896034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28896034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28896034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28896050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28896100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28896150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28901034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28901034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28901034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28901050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28901100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28901150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28926425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28931425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28936425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28941425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28946425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28951425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28956425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28961425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28966425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28971425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28976425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28981050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28981100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28981150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28981425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28986050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28986100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28986150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28986425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28991050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28991100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28991150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28991425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 28996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 28996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 28996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 28996050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 28996100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 28996150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 28996425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29001050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29001100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29001150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29001425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29006034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29006034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29006034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29006050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29006100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29006150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29006425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29011034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29011034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29011034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29011050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29011100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29011150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29011425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29036425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29041425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29046425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29051425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29056425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29061425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29066425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29071425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29076425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29081425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29086425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29091050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29091100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29091150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29091425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29096050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29096100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29096150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29096425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29101050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29101100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29101150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29101425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29106050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29106100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29106150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29106425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29111050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29111100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29111150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29111425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29116034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29116034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29116034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29116050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29116100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29116150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29116425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29121034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29121034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29121034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29121050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29121100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29121150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29121425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29146425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29151425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29156425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29161425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29166425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29171425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29176425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29181425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29186425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29191425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29196425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29201050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29201425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29206050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29206100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29206150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29206425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29211050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29211100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29211150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29211425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29216050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29216100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29216150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29216425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29221050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29221100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29221150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29221425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29226050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29226100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29226150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29226425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29231034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29231034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29231034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29231050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29231100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29231150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29231425.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29256502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29261502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29266502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29271502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29276502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29281502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29286502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29291502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29296502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29301502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29306502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29311050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29311502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29316050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29316100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29316150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29316502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29321050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29321100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29321150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29321502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29326050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29326100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29326150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29326502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29331050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29331100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29331150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29331502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29336050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29336100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29336150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29336502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29341034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29341034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29341034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29341050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29341100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29341150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29341502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29371580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29376580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29381580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29386580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29391580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29396580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29401580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29406580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29411580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29416580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29421050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29421100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29421580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29426050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29426100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29426150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29426580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29431050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29431100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29431150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29431580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29436050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29436100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29436150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29436580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29441050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29441100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29441150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29441580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29446050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29446100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29446150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29446580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29451034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29451034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29451034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29451050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29451100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29451150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29451580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29456034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29456034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29456034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29456050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29456100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29456150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 29456580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29531050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29531100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29536050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29536100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29536150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29541050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29541100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29541150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29546050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29546100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29546150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29551050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29551100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29551150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29556050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29556100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29556150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29561034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29561034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29561034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29561050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29561100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29561150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29566034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29566034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29566034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29566050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29566100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29566150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29646050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29646100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29651050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29651100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29651150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29656050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29656100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29656150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29661050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29661100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29661150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29666050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29666100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29666150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29671050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29671100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29671150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29676034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29676034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29676034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29676050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29676100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29676150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29756050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29756100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29761050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29761100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29761150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29766050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29766100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29766150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29771050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29771100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29771150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29776050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29776100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29776150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29781050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29781100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29781150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29786034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29786034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29786034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29786050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29786100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29786150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29812050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29817050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29822050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29827050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29832050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29837050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29842050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29847050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29852050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29857050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29862050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29866050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29866100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29866150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29867050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29871050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29871100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29871150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29872050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29876050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29876100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29876150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29877050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29881050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29881100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29881150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29882050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29886050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29886100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29886150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29887050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29891050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29891100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29891150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29892050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29896034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29896034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29896034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29896050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29896100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29896150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29897050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29922050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29927050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29932050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29937050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29942050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29947050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29952050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29957050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29962050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29967050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29972050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29977050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29981050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29981100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29981150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29982050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29986050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29986100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29986150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29987050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29991050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29991100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29991150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29992050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 29996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 29996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 29996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 29996050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 29996100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 29996150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 29997050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30001050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30001100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30001150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30002050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30006034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30006034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30006034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30006050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30006100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30006150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30007050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30031050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30032050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30037050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30042050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30047050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30052050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30057050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30062050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30067050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30072050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30077050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30082050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30087050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30091050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30091100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30091150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30092050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30096050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30096100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30096150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30097050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30101050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30101100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30101150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30102050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30106050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30106100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30106150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30107050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30111050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30111100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30111150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30112050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30116034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30116034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30116034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30116050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30116100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30116150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 30117050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30141050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30201050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30206050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30206100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30206150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30211050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30211100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30211150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30212126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30216050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30216100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30216150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30217126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30221050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30221100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30221150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30222126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30226050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30226100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30226150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30227126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30311050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30316050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30316100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30316150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30321050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30321100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30321150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30322126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30326050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30326100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30326150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30327126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30331050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30331100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30331150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30332126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30336050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30336100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30336150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30337126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30341034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30341034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30341034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30341050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30341100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30341150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30366050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30366100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30421050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30421100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30426050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30426100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30426150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30431050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30431100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30431150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30432126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30436050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30436100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30436150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30437126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30441050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30441100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30441150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30442126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30446050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30446100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30446150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30447126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30451034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30451034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30451034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30451050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30451100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30451150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30452126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30476050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30476100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30531050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30531100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30536050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30536100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30536150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30541050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30541100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30541150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30546050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30546100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30546150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30547126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30551050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30551100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30551150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30552126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30556050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30556100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30556150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30557126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30561034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30561034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30561034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30561050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30561100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30561150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30562126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30586050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30586100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30646050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30646100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30651050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30651100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30651150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30656050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30656100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30656150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30657126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30661050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30661100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30661150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30662126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30666050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30666100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30666150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30667126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30671050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30671100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30671150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30672126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30696050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30696100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30756050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30756100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30761050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30761100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30761150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30766050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30766100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30766150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30767126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30771050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30771100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30771150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30772126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30776050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30776100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30776150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30777126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30781034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30781050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30781100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30781150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30782126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30806050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30806100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30806150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30806475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30811475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30816475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30821475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30826475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30831475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30836475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30841475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30846475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30851475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30856475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30861475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30866050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30866100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30866150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30866475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30871050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30871100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30871150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30871475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30876050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30876100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30876150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30876475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30877126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30881050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30881100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30881150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30881475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30882126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30886050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30886100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30886150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30886475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30887126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30891034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30891050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30891100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30891150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30891475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30892126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30916050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30916100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30916150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30916475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30921475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30926475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30931475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30936475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30941475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30946475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30951475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30956475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30961475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30966475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30971475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30976475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30981050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30981100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30981150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30981475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30986050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30986100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30986150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30986475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30991050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30991100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30991150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30991475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30992126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 30996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 30996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 30996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 30996050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 30996100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 30996150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 30996475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 30997126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31001034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31001050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31001100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31001150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31001475.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31002126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31026050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31026100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31026150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31026502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31031050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31031502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31036502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31041502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31046502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31051502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31056502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31061502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31066502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31071502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31076502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31081502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31086502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31091050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31091100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31091150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31091502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31096050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31096100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31096150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31096502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31101050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31101100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31101150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31101502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31102126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31106050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31106100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31106150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31106502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31107126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31111050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31111100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31111150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31111502.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31112126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31141050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31141580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31146580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31151580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31156580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31161580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31166580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31171580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31176580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31181580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31186580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31191580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31196580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31201050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31201580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31206050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31206100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31206150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31206580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31211050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31211100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31211150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31211580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31212126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31216050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31216100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31216150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31216580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31217126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31221050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31221100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31221150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31221580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31222126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31226034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31226050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31226100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31226150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31226580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31227126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31251050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31251100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31251150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31311050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31316050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31316100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31316150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31321050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31321100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31321150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31322126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31326050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31326100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31326150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31327126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31331050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31331100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31331150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31332126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31336034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31336050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31336100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31336150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31337126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31361050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31361100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31361150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31366050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31366100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31421050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31421100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31426050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31426100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31426150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31431050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31431100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31431150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31432126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31436050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31436100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31436150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31437126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31441050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31441100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31441150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31442126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31446034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31446050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31446100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31446150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31447126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31471050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31471100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31471150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31476050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31476100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31531050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31531100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31536050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31536100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31536150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31541050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31541100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31541150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31546050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31546100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31546150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31547126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31551050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31551100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31551150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31552126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31556034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31556050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31556100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31556150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31557126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31581050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31581100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31581150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31586050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31586100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31646050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31646100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31651050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31651100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31651150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31656050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31656100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31656150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31657126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31661050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31661100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31661150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31662126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31666034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31666050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31666100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31666150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31667126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31691050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31691100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31691150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31692100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31696050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31696100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31697100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31702100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31707100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31712100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31717100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31722100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31727100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31732100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31737100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31742100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31747100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31752100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31756050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31756100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31757100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31761050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31761100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31761150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31762100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31766050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31766100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31766150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31767100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31767126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31771050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31771100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31771150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31772100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31772126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31776034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31776050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31776100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31776150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31777100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31777126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31801050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31801100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31801150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31802100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31806050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31806100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31806150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31807100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31812100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31817100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31822100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31827100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31832100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31837100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31842100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31847100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31852100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31857100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31862100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31866050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31866100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31866150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31867100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31871050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31871100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31871150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31872100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31876050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31876100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31876150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31877100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31877126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31881050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31881100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31881150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31882100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31882126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31886034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31886050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31886100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31886150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 31887100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31887126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31911050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31911100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31911150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31916050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31916100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31916150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31981050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31981100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31981150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31986050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31986100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31986150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31991050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31991100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31991150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31992126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31992126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 31996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 31996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 31996034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 31996050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 31996100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 31996150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 31997126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 31997126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32026050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32026100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32026150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32031050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32091050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32091100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32091150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32096050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32096100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32096150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32101050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32101100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32101150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32102126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32102126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32106050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32106100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32106150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32107126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32107126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32111034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32111050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32111100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32111150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32112126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32112126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32136034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32136034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32136034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32136050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32136100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32136150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32141050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32201050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32206050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32206100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32206150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32211050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32211100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32211150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32212126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32212126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32216050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32216100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32216150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32217126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32217126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32221034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32221050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32221100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32221150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32222126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32222126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32246034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32246034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32246050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32246100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32246150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32251050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32251100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32251150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32311050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32316050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32316100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32316150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32321050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32321100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32321150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32322126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32322126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32326050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32326100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32326150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32327126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32327126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32331034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32331050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32331100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32331150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32332126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32332126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32356034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32356034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32356050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32356100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32356150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32361050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32361100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32361150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32366050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32366100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32421050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32421100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32426050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32426100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32426150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32431050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32431100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32431150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32432126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32432126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32436050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32436100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32436150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32437126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32437126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32441034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32441050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32441100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32441150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32442126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32442126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32466034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32466034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32466050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32466100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32466150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32471050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32471100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32471150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32476050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32476100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32531050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32531100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32536050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32536100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32536150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32541050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32541100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32541150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32546050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32546100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32546150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32547126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32547126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32551034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32551050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32551100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32551150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32552126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32552126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32576034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32576034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32576050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32576100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32576150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32581050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32581100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32581150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32586050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32586100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32646050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32646100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32651050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32651100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32651150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32656050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32656100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32656150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32657126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32657126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32661034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32661050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32661100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32661150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32662126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32662126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32686034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32686034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32686050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32686100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32686150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32686525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32691050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32691100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32691150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32691525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32696050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32696100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32696525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32701525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32706525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32711525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32716525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32721525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32726525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32731525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32736525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32741525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32746525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32751525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32756050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32756100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32756525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32761050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32761100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32761150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32761525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32766050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32766100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32766150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32766525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32767126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32767126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32771034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32771050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32771100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32771150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32771525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32772126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32772126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32796034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32796034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32796050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32796100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32796150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32796525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32801050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32801100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32801150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32801525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32806050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32806100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32806150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32806525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32811525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32816525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32821525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32826525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32831525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32836525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32841525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32846525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32851525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32856525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32861525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32866050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32866100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32866150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32866525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32871050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32871100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32871150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32871525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32876050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32876100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32876150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32876525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32877126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32877126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32881034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32881050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32881100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32881150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 32881525.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32882126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32882126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32906034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32906034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32906050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32906100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32906150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32906580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32911050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32911100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32911150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32911580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32916050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32916100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32916150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32916580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32921580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32926580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32931580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32936580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32941580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32946580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32951580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32956580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32961580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32966580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32971580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32976580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32981050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32981100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32981150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32981580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32986050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32986100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32986150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32986580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 32991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 32991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 32991050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 32991100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 32991150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 32991580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 32992126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 32992126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33021034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33021034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33021050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33021100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33021150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33021658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33026050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33026100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33026150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33026658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33031050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33031658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33036658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33041658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33046658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33051658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33056658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33061658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33066658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33071658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33076658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33081658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33086658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33091050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33091100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33091150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33091658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33096050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33096100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33096150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33096658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33101050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33101100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33101150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33101658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33102126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33102126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33106034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33106050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33106100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33106150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33106658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33107126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33107126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33131034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33131034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33131050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33131100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33131150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33136034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33136034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33136050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33136100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33136150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33141050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33201050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33206050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33206100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33206150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33211050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33211100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33211150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33212126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33212126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33216034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33216050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33216100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33216150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33217126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33217126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33241034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33241034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33241050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33241100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33241150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33246034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33246034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33246050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33246100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33246150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33251050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33251100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33251150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33311050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33316050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33316100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33316150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33321050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33321100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33321150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33322126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33322126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33326034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33326050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33326100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33326150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33327126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33327126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33351034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33351034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33351050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33351100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33351150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33356034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33356034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33356050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33356100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33356150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33361050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33361100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33361150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33366050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33366100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33421050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33421100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33426050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33426100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33426150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33431050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33431100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33431150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33432126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33432126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33436034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33436050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33436100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33436150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33437126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33437126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33461034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33461034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33461050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33461100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33461150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33466034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33466034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33466050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33466100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33466150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33471050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33471100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33471150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33476050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33476100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33531050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33531100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33536050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33536100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33536150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33541050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33541100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33541150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33546034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33546050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33546100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33546150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33547126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33547126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33571034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33571034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33571050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33571100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33571150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33572150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33576034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33576034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33576050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33576100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33576150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33577150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33581050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33581100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33581150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33582150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33586050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33586100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33587150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33592150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33597150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33602150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33607150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33612150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33617150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33622150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33627150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33632150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33637150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33642150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33646050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33646100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33647150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33651050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33651100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33651150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33652150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33656034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33656050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33656100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33656150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33657126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33657126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33657150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33681034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33681034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33681050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33681100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33681150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33682150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33686034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33686034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33686050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33686100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33686150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33687150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33691050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33691100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33691150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33692150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33696050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33696100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33697150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33702150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33707150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33712150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33717150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33722150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33727150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33732150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33737150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33742150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33747150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33752150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33756050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33756100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33757150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33761050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33761100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33761150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33762150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33766034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33766050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33766100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33766150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33767126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33767126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 33767150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33791034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33791034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33791050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33791100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33791150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33796034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33796034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33796050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33796100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33796150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33801050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33801100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33801150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33806050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33806100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33806150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33866050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33866100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33866150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33867204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33871050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33871100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33871150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33872204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33876034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33876050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33876100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33876150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33877126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33877126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33877204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33906034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33906034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33906050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33906100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33906150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33907204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33911050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33911100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33911150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33912204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33916050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33916100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33916150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33917204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33922204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33927204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33932204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33937204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33942204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33947204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33952204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33957204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33962204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33967204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33972204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33977204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33981050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33981100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33981150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33982204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33986050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33986100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33986150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33987204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 33991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 33991034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 33991050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 33991100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 33991150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 33992126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 33992126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 33992204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34016034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34016034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34016050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34016100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34016150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34017204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34021034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34021034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34021050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34021100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34021150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34022204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34026050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34026100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34026150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34027204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34031050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34032204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34037204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34042204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34047204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34052204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34057204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34062204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34067204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34072204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34077204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34082204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34087204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34091050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34091100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34091150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34092204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34096050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34096100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34096150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34097204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34101034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34101050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34101100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34101150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34102126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34102126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34102204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34126034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34126050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34126100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34126112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34126150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34127204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34131034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34131050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34131100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34131112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34131150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34132204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34136034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34136050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34136100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34136112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34136150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34137204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34141050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34141112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34142204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34146112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34147204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34151112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34152204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34156112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34157204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34161112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34162204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34166112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34167204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34171112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34172204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34176112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34177204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34181112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34182204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34186112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34187204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34191112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34192204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34196112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34197204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34201050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34201112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34202204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34206050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34206100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34206112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34206150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34207204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34211034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34211050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34211100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34211112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34211150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34212126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34212126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34212204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34236034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34236050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34236100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34236150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34237204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34241034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34241050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34241100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34241150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34242204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34246034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34246050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34246100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34246150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34247204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34251050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34251100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34251150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34252204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34257204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34262204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34267204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34272204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34277204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34282204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34287204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34292204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34297204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34302204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34307204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34311050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34312204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34316050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34316100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34316150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34317204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34321034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34321050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34321100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34321150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34322126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34322126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34322204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34346034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34346050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34346100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34346150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34347204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34351034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34351050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34351100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34351150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34352204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34356034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34356050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34356100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34356150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34357204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34361050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34361100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34361150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34362204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34366050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34366100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34367204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34372204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34377204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34382204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34387204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34392204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34397204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34402204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34407204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34412204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34417204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34421050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34421100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34422204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34426050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34426100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34426150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34427204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34431034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34431050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34431100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34431150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34432126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34432126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34432204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34456034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34456050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34456100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34456150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34457204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34461034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34461050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34461100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34461150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34462204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34466034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34466050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34466100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34466150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34467204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34471050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34471100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34471150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34472204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34476050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34476100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34477204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34482204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34487204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34492204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34497204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34502204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34507204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34512204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34517204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34522204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34527204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34531050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34531100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34532204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34536050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34536100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34536150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34537204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34541034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34541050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34541100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34541150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34542204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34566034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34566050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34566100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34566150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34566575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34567126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34567126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34567204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34571034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34571050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34571100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34571150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34571575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34572204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34576034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34576050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34576100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34576150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34576575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34577204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34581050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34581100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34581150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34581575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34582204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34586050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34586100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34586575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34587204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34591575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34592204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34596575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34597204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34601575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34602204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34606575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34607204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34611575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34612204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34616575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34617204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34621575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34622204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34626575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34627204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34631575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34632204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34636575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34637204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34641575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34642204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34646050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34646100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34646575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34647204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34651034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34651050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34651100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34651150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34651575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34652204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34676034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34676050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34676100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34676150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34676575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34677126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34677126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34677204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34681034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34681050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34681100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34681150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34681575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34686034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34686050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34686100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34686150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34686575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34691050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34691100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34691150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34691575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34696050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34696100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34696575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34701575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34706575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34711575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34716575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34721575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34726575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34731575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34736575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34741575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34746575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34751575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34752204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34756050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34756100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34756575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34757204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34761034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34761050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34761100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34761150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 34761575.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34762204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34786034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34786050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34786100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34786150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34786580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34787126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34787126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34787204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34791034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34791050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34791100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34791150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34791580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34796034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34796050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34796100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34796150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34796580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34801050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34801100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34801150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34801580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34806050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34806100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34806150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34806580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34811580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34816580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34821580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34826580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34831580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34836580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34841580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34846580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34851580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34856580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34861580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34866050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34866100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34866150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34866580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34867204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34871050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34871100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34871150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34871580.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34872204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34901034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34901050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34901100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34901150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34901658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34902126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34902126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34902204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34906034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34906050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34906100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34906150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34906658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34907204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34911050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34911100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34911150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34911658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34912204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34916050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34916100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34916150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34916658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34917204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34921658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34922204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34926658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34927204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34931658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34932204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34936658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34937204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34941658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34942204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34946658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34947204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34951658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34952204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34956658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34957204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34961658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34962204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34966658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34967204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34971658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34972204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34976658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34977204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34981050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34981100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34981150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34981658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34982204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 34986034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 34986050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 34986100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 34986150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 34986658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 34987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 34987126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 34987204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35011034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35011050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35011100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35011150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35011736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35012126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35012126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35012204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35016034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35016050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35016100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35016150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35016736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35017204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35021034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35021050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35021100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35021150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35021736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35022204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35026034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35026050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35026100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35026150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35026736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35027204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35031034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35031050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35031736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35032204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35036034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35036736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35037204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35041034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35041736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35042204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35046034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35046736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35047204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35051034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35051736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35052204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35056034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35056736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35057204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35061034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35061736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35062204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35066034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35066736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35067204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35071034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35071736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35072204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35076034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35076736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35077204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35081034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35081736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35082204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35086034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35086736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35087204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35091034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35091050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35091100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35091150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35091736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35092204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35096034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35096050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35096100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35096150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35096736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35097126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35097204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35121034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35121050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35121100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35121150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35122126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35122126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35122204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35126034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35126050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35126100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35126150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35127204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35131034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35131050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35131100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35131150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35132204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35136034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35136050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35136100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35136150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35137204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35141034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35141050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35142204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35146034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35147204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35151034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35152204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35156034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35157204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35161034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35162204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35166034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35167204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35171034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35172204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35176034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35177204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35181034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35182204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35186034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35187204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35191034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35192204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35196034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35197204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35201034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35201050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35202204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35206034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35206050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35206100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35206150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35207126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35207204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35231034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35231050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35231100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35231150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35232126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35232126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35232204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35236034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35236050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35236100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35236150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35237204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35241034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35241050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35241100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35241150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35242204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35246034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35246050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35246100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35246150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35247204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35251034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35251050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35251100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35251150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35252204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35256034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35257204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35261034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35262204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35266034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35267204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35271034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35272204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35276034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35277204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35281034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35282204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35286034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35287204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35291034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35292204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35296034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35297204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35301034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35302204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35306034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35307204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35311034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35311050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35312204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35316034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35316050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35316100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35316150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35317204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35341034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35341050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35341100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35341150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35342204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35346034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35346050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35346100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35346150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35347204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35351034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35351050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35351100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35351150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35352204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35356034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35356050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35356100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35356150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35357204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35361034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35361050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35361100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35361150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35362204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35366034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35366050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35366100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35367204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35371034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35372204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35376034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35377204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35381034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35382204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35386034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35387204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35391034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35392204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35396034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35397204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35401034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35402204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35406034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35407204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35411034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35412204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35416034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35417204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35421034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35421050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35421100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35422204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35426034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35426050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35426100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35426150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35427204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35451034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35451050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35451100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35451150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35452126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35452126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35452200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35452204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35456034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35456050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35456100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35456150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35457200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35457204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35461034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35461050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35461100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35461150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35462200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35462204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35466034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35466050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35466100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35466150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35467200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35467204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35471034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35471050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35471100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35471150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35472200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35472204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35476034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35476050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35476100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35477200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35477204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35481034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35482200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35482204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35486034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35487200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35487204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35491034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35492200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35492204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35496034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35497200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35497204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35501034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35502200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35502204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35506034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35507200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35507204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35511034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35512200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35512204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35516034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35517200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35517204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35521034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35522200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35522204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35526034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35527200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35527204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35531034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35531050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35531100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35532200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35532204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35536034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35536050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35536100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35536150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35537200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35537204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35561034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35561050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35561100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35561150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35562126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35562126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35562200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35562204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35566034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35566050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35566100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35566150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35567126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35567126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35567200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35567204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35571034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35571050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35571100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35571150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35572200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35572204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35576034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35576050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35576100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35576150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35577200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35577204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35581034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35581050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35581100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35581150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35582200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35582204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35586034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35586050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35586100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35587200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35587204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35591034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35592200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35592204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35596034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35597200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35597204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35601034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35602200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35602204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35606034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35607200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35607204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35611034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35612200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35612204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35616034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35617200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35617204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35621034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35622200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35622204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35626034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35627200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35627204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35631034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35632200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35632204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35636034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35637200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35637204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35641034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35642200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35642204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35646034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35646050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35646100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 35647200.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35647204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35671034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35671050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35671100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35671150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35672126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35672126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35672204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35672204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35676034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35676050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35676100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35676150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35677126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35677126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35677204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35677204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35681034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35681050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35681100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35681150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35686034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35686050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35686100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35686150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35691034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35691050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35691100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35691150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35696034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35696050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35696100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35701034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35706034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35711034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35716034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35721034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35726034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35731034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35736034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35741034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35746034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35751034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35752204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35752204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35756034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35756050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35756100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35757204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35757204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35786034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35786050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35786100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35786150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35787126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35787126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35787204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35787204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35791034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35791050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35791100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35791150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35796034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35796050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35796100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35796150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35801034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35801050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35801100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35801150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35806034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35806050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35806100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35806150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35811034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35816034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35821034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35826034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35831034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35836034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35841034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35846034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35851034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35856034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35861034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35866034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35866050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35866100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35866150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35867204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35867204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35871034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35871050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35871100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35871150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35872204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35872204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35896034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35896050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35896100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35896150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35897126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35897126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35897204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35897204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35901034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35901050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35901100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35901150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35902126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35902126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35902204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35902204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35906034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35906050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35906100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35906150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35907204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35907204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35911034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35911050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35911100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35911150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35912204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35912204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35916034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35916050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35916100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35916150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35917204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35917204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35921034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35922204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35922204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35926034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35927204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35927204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35931034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35932204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35932204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35936034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35937204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35937204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35941034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35942204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35942204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35946034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35947204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35947204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35951034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35952204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35952204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35956034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35957204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35957204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35961034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35962204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35962204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35966034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35967204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35967204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35971034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35972204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35972204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35976034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35977204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35977204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 35981034.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 35981050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 35981100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 35981150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 35982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 35982126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 35982204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 35982204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36006050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36006100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36006112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36006150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36007126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36007126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36007204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36007204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36011050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36011100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36011112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36011150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36012126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36012126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36012204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36012204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36016050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36016100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36016112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36016150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36017204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36017204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36021050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36021100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36021112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36021150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36022204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36022204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36026050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36026100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36026112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36026150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36027204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36027204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36031050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36031112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36032204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36032204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36036112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36037204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36037204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36041112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36042204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36042204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36046112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36047204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36047204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36051112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36052204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36052204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36056112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36057204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36057204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36061112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36062204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36062204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36066112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36067204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36067204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36071112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36072204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36072204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36076112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36077204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36077204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36081112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36082204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36082204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36086112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36087204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36087204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36091050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36091100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36091112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36091150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36092126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36092204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36092204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36116050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36116100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36116150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36117126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36117126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36117204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36117204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36121050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36121100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36121150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36122126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36122126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36122204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36122204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36126050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36126100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36126150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36127204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36127204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36131050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36131100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36131150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36132204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36132204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36136050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36136100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36136150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36137204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36137204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36141050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36142204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36142204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36147204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36147204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36152204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36152204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36157204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36157204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36162204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36162204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36167204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36167204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36172204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36172204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36177204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36177204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36182204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36182204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36187204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36187204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36192204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36192204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36197204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36197204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36201050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36202204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36202204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36226050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36226100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36226150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36227126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36227126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36227204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36227204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36231050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36231100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36231150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36232126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36232126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36232204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36232204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36236050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36236100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36236150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36237204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36237204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36241050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36241100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36241150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36242204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36242204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36246050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36246100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36246150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36247204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36247204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36251050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36251100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36251150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36252204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36252204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36257204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36257204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36262204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36262204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36267204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36267204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36272204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36272204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36277204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36277204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36282204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36282204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36287204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36287204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36292204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36292204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36297204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36297204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36302204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36302204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36307204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36307204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36311050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36312204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36312204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36336050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36336100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36336150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36337126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36337126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36337204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36337204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36341050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36341100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36341150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36342204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36342204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36346050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36346100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36346150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36347204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36347204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36351050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36351100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36351150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36352204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36352204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36356050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36356100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36356150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36357204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36357204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36361050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36361100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36361150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36362204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36362204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36366050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36366100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36367204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36367204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36372204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36372204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36377204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36377204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36382204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36382204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36387204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36387204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36392204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36392204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36397204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36397204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36402204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36402204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36407204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36407204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36412204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36412204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36417204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36417204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36421050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36421100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36422204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36422204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36446050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36446100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36446150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36447126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36447126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36447204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36447204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36451050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36451100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36451150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36452126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36452126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36452204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36452204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36456050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36456100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36456150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36457204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36457204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36461050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36461100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36461150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36462204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36462204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36466050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36466100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36466150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36467204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36467204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36471050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36471100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36471150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36472204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36472204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36476050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36476100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36477204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36477204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36482204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36482204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36487204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36487204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36492204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36492204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36497204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36497204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36502204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36502204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36507204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36507204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36512204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36512204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36517204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36517204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36522204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36522204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36527204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36527204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36531050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36531100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36532204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36532204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36556050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36556100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36556150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36556625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36557126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36557126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36557204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36557204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36561050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36561100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36561150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36561625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36562126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36562126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36562204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36562204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36566050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36566100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36566150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36566625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36567126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36567126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36567204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36567204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36571050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36571100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36571150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36571625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36572204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36572204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36576050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36576100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36576150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36576625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36577204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36577204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36581050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36581100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36581150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36581625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36582204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36582204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36586050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36586100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36586625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36587204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36587204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36591625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36592204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36592204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36596625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36597204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36597204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36601625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36602204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36602204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36606625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36607204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36607204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36611625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36612204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36612204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36616625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36617204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36617204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36621625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36622204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36622204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36626625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36627204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36627204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36631625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36632204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36632204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36636625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36637204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36637204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36641050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36641100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36641625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36642204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36642204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36666050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36666100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36666150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36666625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36667126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36667126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36667204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36667204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36671050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36671100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36671150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36671625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36672126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36672126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36672204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36672204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36676050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36676100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36676150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36676625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36677126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36677126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36677204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36677204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36681050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36681100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36681150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36681625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36686050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36686100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36686150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36686625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36691050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36691100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36691150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36691625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36696050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36696100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36696625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36701625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36706625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36711625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36716625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36721625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36726625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36731625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36736625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36741625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36746625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36751050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36751100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 36751625.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36752204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36752204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36776050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36776100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36776150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36776658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36777126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36777126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36777204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36777204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36781050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36781100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36781150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36781658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36782126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36782126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36782204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36782204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36786050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36786100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36786150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36786658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36787126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36787126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36787204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36787204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36791050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36791100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36791150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36791658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36796050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36796100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36796150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36796658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36801050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36801100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36801150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36801658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36806050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36806100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36806150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36806658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36811658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36816658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36821658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36826658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36831658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36836658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36841658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36846658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36851658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36856658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36861658.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36891050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36891100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36891150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36891736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36892126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36892126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36892204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36892204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36896050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36896100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36896150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36896736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36897126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36897126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36897204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36897204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36901050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36901100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36901150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36901736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36902126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36902126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36902204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36902204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36906050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36906100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36906150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36906736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36907204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36907204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36911050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36911100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36911150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36911736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36912204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36912204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36916050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36916100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36916150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36916736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36917204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36917204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36921736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36922204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36922204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36926736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36927204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36927204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36931736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36932204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36932204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36936736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36937204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36937204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36941736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36942204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36942204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36946736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36947204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36947204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36951736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36952204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36952204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36956736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36957204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36957204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36961736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36962204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36962204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36966736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36967204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36967204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36971736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36972204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36972204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 36976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 36976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 36976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 36976736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 36977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 36977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 36977204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 36977204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37001050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37001100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37001150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37002126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37002126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37002204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37002204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37006050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37006100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37006150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37007126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37007126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37007204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37007204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37011050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37011100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37011150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37012126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37012126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37012204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37012204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37016050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37016100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37016150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37017204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37017204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37021050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37021100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37021150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37022204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37022204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37026050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37026100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37026150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37027204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37027204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37031050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37032204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37032204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37036050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37037204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37037204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37041050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37042204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37042204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37046050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37047204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37047204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37051050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37052204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37052204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37056050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37057204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37057204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37061050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37062204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37062204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37066050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37067204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37067204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37071050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37072204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37072204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37076050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37077204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37077204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37081050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37082204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37082204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37086050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37087204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37087204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37111050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37111100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37111150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37112126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37112126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37112204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37112204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37116050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37116100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37116150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37117126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37117126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37117204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37117204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37121050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37121100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37121150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37122126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37122126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37122204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37122204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37126050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37126100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37126150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37127204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37127204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37131050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37131100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37131150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37132204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37132204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37136050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37136100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37136150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37137204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37137204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37141050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37142204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37142204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37146050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37147204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37147204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37151050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37152204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37152204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37156050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37157204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37157204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37161050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37162204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37162204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37166050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37167204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37167204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37171050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37172204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37172204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37176050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37177204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37177204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37181050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37182204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37182204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37186050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37187204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37187204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37191050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37192204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37192204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37196050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37197204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37197204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37221050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37221100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37221150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37222126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37222126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37222204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37222204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37226050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37226100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37226150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37227126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37227126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37227204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37227204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37231050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37231100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37231150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37232126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37232126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37232204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37232204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37236050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37236100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37236150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37237204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37237204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37241050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37241100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37241150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37242204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37242204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37246050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37246100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37246150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37247204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37247204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37251050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37251100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37251150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37252204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37252204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37256050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37257204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37257204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37261050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37262204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37262204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37266050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37267204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37267204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37271050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37272204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37272204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37276050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37277204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37277204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37281050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37282204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37282204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37286050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37287204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37287204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37291050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37292204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37292204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37296050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37297204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37297204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37301050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37302204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37302204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37306050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37307204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37307204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37331050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37331100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37331150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37332126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37332126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37332204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37332204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37336050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37336100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37336150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37337126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37337126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37337204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37337204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37341050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37341100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37341150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37342204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37342204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37346050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37346100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37346150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37347204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37347204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37351050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37351100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37351150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37352204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37352204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37356050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37356100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37356150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37357204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37357204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37361050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37361100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37361150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37362204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37362204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37366050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37366100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37367204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37367204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37371050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37371100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37372204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37372204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37376050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37376100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37377204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37377204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37381050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37381100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37382204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37382204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37386050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37386100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37387204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37387204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37391050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37391100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37392204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37392204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37396050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37396100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37397204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37397204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37401050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37401100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37402204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37402204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37406050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37406100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37407204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37407204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37411050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37411100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37412204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37412204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37416050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37416100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37417204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37417204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37441050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37441100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37441150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37442126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37442126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37442204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37442204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37442250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37446050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37446100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37446150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37447126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37447126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37447204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37447204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37447250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37451050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37451100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37451150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37452126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37452126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37452204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37452204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37452250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37456050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37456100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37456150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37457204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37457204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37457250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37461050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37461100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37461150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37462204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37462204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37462250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37466050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37466100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37466150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37467204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37467204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37467250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37471050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37471100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37471150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37472204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37472204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37472250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37476050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37476100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37477204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37477204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37477250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37481050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37481100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37482204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37482204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37482250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37486050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37486100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37487204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37487204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37487250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37491050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37491100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37492204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37492204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37492250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37496050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37496100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37497204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37497204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37497250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37501050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37501100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37502204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37502204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37502250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37506050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37506100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37507204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37507204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37507250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37511050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37511100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37512204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37512204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37512250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37516050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37516100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37517204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37517204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37517250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37521050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37521100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37522204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37522204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37522250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37526050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37526100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37527204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37527204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37527250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37551050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37551100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37551150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37552126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37552126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37552204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37552204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37552250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37556050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37556100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37556150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37557126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37557126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37557204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37557204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37557250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37561050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37561100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37561150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37562126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37562126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37562204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37562204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37562250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37566050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37566100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37566150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37567126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37567126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37567204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37567204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37567250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37571050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37571100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37571150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37572204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37572204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37572250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37576050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37576100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37576150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37577204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37577204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37577250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37581050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37581100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37581150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37582204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37582204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37582250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37586050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37586100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37587204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37587204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37587250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37591050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37591100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37592204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37592204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37592250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37596050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37596100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37597204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37597204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37597250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37601050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37601100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37602204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37602204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37602250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37606050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37606100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37607204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37607204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37607250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37611050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37611100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37612204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37612204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37612250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37616050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37616100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37617204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37617204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37617250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37621050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37621100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37622204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37622204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37622250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37626050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37626100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37627204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37627204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37627250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37631050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37631100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37632204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37632204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37632250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37636050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37636100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37637204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37637204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 37637250.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37661050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37661100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37661150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37662126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37662126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37662204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37662204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37662282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37666050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37666100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37666150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37667126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37667126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37667204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37667204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37667282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37671050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37671100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37671150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37672126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37672126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37672204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37672204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37672282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37676050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37676100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37676150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37677126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37677126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37677204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37677204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37677282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37681050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37681100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37681150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37682282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37686050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37686100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37686150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37687282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37691050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37691100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37691150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37692282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37696050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37696100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37697282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37701050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37701100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37702282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37706050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37706100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37707282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37711050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37711100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37712282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37716050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37716100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37717282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37721050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37721100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37722282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37726050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37726100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37727282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37731050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37731100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37732282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37736050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37736100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37737282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37741050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37741100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37742282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37746050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37746100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37747282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37776050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37776100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37776150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37777126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37777126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37777204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37777204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37777282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37781050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37781100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37781150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37782126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37782126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37782204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37782204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37782282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37786050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37786100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37786150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37787126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37787126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37787204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37787204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37787282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37791050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37791100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37791150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37792282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37796050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37796100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37796150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37797282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37801050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37801100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37801150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37802282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37806050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37806100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37806150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37807282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37811050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37811100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37811150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37812282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37816050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37816100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37816150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37817282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37821050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37821100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37821150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37822282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37826050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37826100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37826150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37827282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37831050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37831100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37831150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37832282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37836050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37836100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37836150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37837282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37841050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37841100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37841150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37842282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37846050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37846100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37846150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37847282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37851050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37851100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37851150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37852282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37856050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37856100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37856150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37857282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37861050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37861100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37861150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37862282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37891050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37891100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37891150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37892126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37892126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37892204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37892204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37892282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37896050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37896100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37896150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37897126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37897126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37897204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37897204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37897282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37901050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37901100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37901150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37902126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37902126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37902204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37902204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37902282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37906050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37906100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37906150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37907126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37907204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37907204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37907282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37911050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37911100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37911150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37912126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37912204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37912204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37912282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37916050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37916100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37916150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37917126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37917204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37917204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37917282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37921050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37921100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37921150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37922126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37922204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37922204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37922282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37926050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37926100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37926150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37927126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37927204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37927204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37927282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37931050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37931100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37931150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37932126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37932204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37932204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37932282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37936050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37936100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37936150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37937126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37937204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37937204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37937282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37941050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37941100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37941150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37942126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37942204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37942204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37942282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37946050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37946100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37946150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37947126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37947204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37947204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37947282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37951050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37951100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37951150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37952126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37952204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37952204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37952282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37956050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37956100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37956150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37957126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37957204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37957204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37957282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37961050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37961100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37961150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37962126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37962204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37962204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37962282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37966050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37966100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37966150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37967126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37967204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37967204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37967282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37971050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37971100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37971150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37972126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37972204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37972204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37972282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 37976050.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 37976100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 37976150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 37977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 37977126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 37977204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 37977204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 37977282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38001100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38001112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38001150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38002126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38002126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38002204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38002204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38002282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38006100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38006112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38006150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38007126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38007126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38007204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38007204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38007282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38011100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38011112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38011150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38012126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38012126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38012204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38012204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38012282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38016100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38016112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38016150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38017126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38017204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38017204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38017282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38021100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38021112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38021150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38022126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38022204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38022204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38022282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38026100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38026112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38026150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38027126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38027204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38027204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38027282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38031100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38031112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38031150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38032126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38032204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38032204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38032282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38036100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38036112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38036150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38037126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38037204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38037204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38037282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38041100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38041112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38041150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38042126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38042204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38042204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38042282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38046100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38046112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38046150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38047126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38047204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38047204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38047282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38051100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38051112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38051150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38052126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38052204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38052204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38052282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38056100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38056112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38056150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38057126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38057204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38057204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38057282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38061100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38061112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38061150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38062126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38062204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38062204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38062282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38066100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38066112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38066150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38067126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38067204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38067204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38067282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38071100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38071112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38071150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38072126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38072204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38072204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38072282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38076100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38076112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38076150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38077126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38077204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38077204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38077282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38081100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38081112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38081150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38082126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38082204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38082204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38082282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38086100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38086112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38086150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38087126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38087204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38087204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38087282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38116100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38116112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38116150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38117126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38117126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38117204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38117204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38117282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38121100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38121112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38121150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38122126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38122126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38122204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38122204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38122282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38126100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38126112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38126150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38127126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38127204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38127204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38127282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38131100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38131112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38131150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38132126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38132204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38132204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38132282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38136100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38136112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38136150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38137126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38137204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38137204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38137282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38141100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38141112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38141150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38142126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38142204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38142204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38142282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38146100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38146112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38146150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38147126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38147204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38147204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38147282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38151100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38151112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38151150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38152126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38152204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38152204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38152282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38156100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38156112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38156150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38157126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38157204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38157204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38157282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38161100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38161112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38161150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38162126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38162204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38162204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38162282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38166100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38166112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38166150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38167126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38167204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38167204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38167282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38171100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38171112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38171150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38172126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38172204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38172204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38172282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38176100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38176112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38176150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38177126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38177204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38177204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38177282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38181100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38181112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38181150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38182126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38182204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38182204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38182282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38186100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38186112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38186150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38187126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38187204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38187204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38187282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38191100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38191112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38191150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38192126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38192204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38192204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38192282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38196100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38196112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38196150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38197126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38197204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38197204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38197282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38201100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38201112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38201150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38202126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38202204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38202204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38202282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38231100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38231112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38231150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38232126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38232126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38232204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38232204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38232282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38236100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38236112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38236150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38237126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38237204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38237204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38237282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38241100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38241112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38241150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38242126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38242204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38242204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38242282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38246100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38246112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38246150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38247126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38247204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38247204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38247282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38251100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38251112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38251150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38252126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38252204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38252204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38252282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38256100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38256112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38256150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38257126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38257204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38257204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38257282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38261100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38261112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38261150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38262126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38262204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38262204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38262282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38266100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38266112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38266150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38267126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38267204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38267204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38267282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38271100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38271112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38271150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38272126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38272204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38272204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38272282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38276100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38276112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38276150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38277126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38277204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38277204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38277282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38281100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38281112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38281150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38282126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38282204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38282204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38282282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38286100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38286112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38286150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38287126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38287204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38287204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38287282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38291100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38291112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38291150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38292126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38292204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38292204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38292282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38296100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38296112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38296150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38297126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38297204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38297204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38297282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38301100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38301112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38301150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38302126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38302204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38302204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38302282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38306100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38306112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38306150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38307126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38307204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38307204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38307282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38311100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38311112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38311150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38312126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38312204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38312204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38312282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 38316100.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38316112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38316150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38317126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38317204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38317204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38317282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38341112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38341112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38341150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38342126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38342204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38342204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38342282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38346112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38346112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38346150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38347126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38347204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38347204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38347282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38351112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38351112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38351150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38352126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38352204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38352204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38352282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38356112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38356112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38356150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38357126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38357204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38357204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38357282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38361112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38361112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38361150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38362126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38362204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38362204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38362282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38366112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38366112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38366150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38367126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38367204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38367204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38367282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38371112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38371112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38371150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38372126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38372204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38372204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38372282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38376112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38376112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38376150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38377126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38377204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38377204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38377282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38381112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38381112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38381150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38382126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38382204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38382204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38382282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38386112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38386112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38386150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38387126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38387204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38387204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38387282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38391112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38391112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38391150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38392126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38392204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38392204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38392282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38396112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38396112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38396150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38397126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38397204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38397204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38397282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38401112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38401112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38401150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38402126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38402204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38402204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38402282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38406112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38406112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38406150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38407126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38407204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38407204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38407282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38411112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38411112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38411150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38412126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38412204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38412204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38412282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38416112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38416112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38416150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38417126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38417204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38417204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38417282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38421150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38422126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38422204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38422204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38422282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38426112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38426112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38426150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38427126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38427204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38427204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38427282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38456112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38456112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38456150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38457126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38457204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38457204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38457282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38461112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38461112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38461150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38462126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38462204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38462204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38462282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38466112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38466112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38466150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38467126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38467204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38467204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38467282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38471112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38471112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38471150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38472126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38472204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38472204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38472282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38476112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38476112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38476150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38477126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38477204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38477204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38477282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38481112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38481112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38481150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38482126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38482204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38482204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38482282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38486112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38486112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38486150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38487126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38487204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38487204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38487282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38491112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38491112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38491150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38492126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38492204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38492204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38492282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38496112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38496112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38496150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38497126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38497204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38497204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38497282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38501112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38501112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38501150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38502126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38502204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38502204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38502282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38506112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38506112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38506150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38507126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38507204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38507204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38507282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38511112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38511112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38511150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38512126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38512204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38512204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38512282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38516112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38516112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38516150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38517126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38517204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38517204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38517282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38521112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38521112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38521150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38522126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38522204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38522204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38522282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38526112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38526112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38526150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38527126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38527204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38527204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38527282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38531112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38531112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38531150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38532126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38532204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38532204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38532282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38536112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38536112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38536150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38537126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38537204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38537204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38537282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38541112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38541112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38541150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38542126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38542204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38542204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38542282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38571112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38571112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38571150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38572126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38572204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38572204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38572282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38576112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38576112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38576150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38577126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38577204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38577204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38577282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38581112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38581112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38581150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38582126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38582204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38582204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38582282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38586112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38586112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38586150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38587126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38587204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38587204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38587282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38591112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38591112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38591150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38592126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38592204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38592204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38592282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38596112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38596112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38596150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38597126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38597204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38597204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38597282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38601112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38601112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38601150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38602126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38602204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38602204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38602282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38606112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38606112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38606150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38607126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38607204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38607204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38607282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38611112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38611112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38611150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38612126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38612204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38612204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38612282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38616112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38616112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38616150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38617126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38617204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38617204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38617282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38621112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38621112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38621150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38622126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38622204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38622204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38622282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38626112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38626112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38626150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38627126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38627204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38627204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38627282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38631112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38631112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38631150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38632126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38632204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38632204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38632282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38636112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38636112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38636150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38637126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38637204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38637204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38637282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38641112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38641112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38641150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38642126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38642204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38642204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38642282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38646112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38646112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38646150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38647126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38647204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38647204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38647282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38651112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38651112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38651150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38652126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38652204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38652204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38652282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38656112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38656112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38656150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38657126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38657126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38657204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38657204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38657282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38681112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38681112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38681150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38682126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38682204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38682282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38686112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38686112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38686150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38687126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38687204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38687282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38691112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38691112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38691150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38692126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38692204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38692282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38696112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38696112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38696150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38697126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38697204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38697282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38701112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38701112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38701150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38702126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38702204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38702282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38706112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38706112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38706150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38707126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38707204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38707282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38711112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38711112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38711150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38712126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38712204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38712282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38716112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38716112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38716150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38717126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38717204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38717282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38721112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38721112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38721150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38722126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38722204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38722282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38726112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38726112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38726150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38727126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38727204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38727282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38731112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38731112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38731150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38732126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38732204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38732282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38736112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38736112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38736150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38737126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38737204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38737282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38741112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38741112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38741150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38742126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38742204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38742282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38746112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38746112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38746150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38747126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38747204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38747282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38751112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38751112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38751150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38752126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38752204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38752204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38752282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38756112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38756112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38756150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38757126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38757204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38757204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38757282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38761112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38761112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38761150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38762126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38762204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38762204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38762282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38766112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38766112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 38766150.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38767126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38767126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38767204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38767204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38767282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38791112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38791112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38791190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38792126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38792204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38792282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38796112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38796112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38796190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38797126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38797204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38797282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38801112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38801112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38801190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38802126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38802204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38802282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38806112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38806112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38806190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38807126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38807204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38807282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38811112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38811112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38811190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38812126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38812204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38812282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38816112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38816112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38816190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38817126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38817204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38817282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38821112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38821112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38821190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38822126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38822204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38822282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38826112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38826112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38826190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38827126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38827204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38827282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38831112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38831112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38831190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38832126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38832204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38832282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38836112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38836112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38836190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38837126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38837204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38837282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38841112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38841112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38841190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38842126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38842204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38842282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38846112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38846112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38846190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38847126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38847204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38847282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38851112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38851112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38851190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38852126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38852204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38852282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38856112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38856112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38856190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38857126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38857204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38857282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38861112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38861112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38861190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38862126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38862204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38862282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38866112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38866112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38866190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38867126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38867204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38867204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38867282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38871112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38871112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38871190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38872126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38872204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38872204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38872282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 38876112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 38876112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 38876190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 38877126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 38877126.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 38877204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 38877204.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 38877282.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 117) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 122) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 127) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 132) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 137) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 142) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 147) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 148) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 157) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 162) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 163) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 183) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 102) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 107) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 172) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 94330 ns +Time Done: 107020 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 107065000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> + +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 107020 ns +Time Done: 119350 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 119395000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (1) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (2) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32767) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32767) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (1, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32767) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> +[ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 119350 ns +Time Done: 132105 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 132150000.0 ps +[ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6578) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50530) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39738) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34342) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23550) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12758) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7362) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32967) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13542) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35910) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30514) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19722) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14326) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8930) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3534) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59357) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58278) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47485) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42089) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36693) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31297) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20505) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15109) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9713) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4317) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53665) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49349) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48269) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42873) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40715) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38556) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37477) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32081) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31002) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28844) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27764) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26685) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25606) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24527) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20210) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19131) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18052) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16972) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15893) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14814) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13735) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10497) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9418) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8339) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7260) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6180) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 65241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32865) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28548) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27469) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22073) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16677) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11281) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5885) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 489) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61708) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60629) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55233) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44441) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40124) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39045) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33649) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31490) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30411) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29332) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28253) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27174) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26094) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22857) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17461) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16382) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15302) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14223) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13144) -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12065) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10986) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9906) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8827) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7748) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6669) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4510) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3431) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1273) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64650) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63571) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62492) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59254) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57096) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56017) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53858) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52779) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51700) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50621) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49542) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48462) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47383) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43066) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41987) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40908) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39829) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37670) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36591) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35512) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34433) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29037) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27957) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23641) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18245) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12849) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7453) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2057) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51405) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46009) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40613) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29820) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19028) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62980) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59743) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53268) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42476) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41396) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40317) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39238) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38159) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37080) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33842) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32763) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31684) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30604) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29525) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27367) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26287) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20891) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19812) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17654) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15495) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13337) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12258) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10099) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6862) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 387) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59447) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52972) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37863) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32467) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31388) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21675) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18438) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 91) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64548) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60231) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53756) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49439) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42964) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39726) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36489) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32172) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30014) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27855) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25697) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24618) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23538) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22459) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20301) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19221) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17063) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13825) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12746) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11667) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9509) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8429) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6271) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3033) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 875) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65332) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64253) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63173) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61015) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58857) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57777) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56698) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55619) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54540) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52381) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50223) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46985) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44827) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43748) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42669) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41589) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40510) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39431) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37273) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34035) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32956) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31877) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11372) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 580) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 65036) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 58561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 54244) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 53165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 47769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 42373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 36977) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 31581) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 27264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 26185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 20789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 15393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 9997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 4601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 2443) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 60424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 59345) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 57187) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 55028) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 53949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 50711) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 49632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 48553) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 47474) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 44236) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 43157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 42078) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40999) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 39919) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 38840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 37761) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 36682) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35603) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 33444) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 32365) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 31286) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30207) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 29127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 28048) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 26969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 22652) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 21573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 20494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 18335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 17256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 16177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 15098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14019) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 12939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11860) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 10781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 9702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 8622) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 6464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 5385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 1068) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 65525) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 60129) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 59050) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 54733) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52574) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 49337) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 43941) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 38545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 34228) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 33149) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32070) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 28832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 27753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 23436) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 22357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20198) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 16961) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 13723) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 11565) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 7248) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 6169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 1852) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 60913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 55517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53358) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52279) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 50121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 44725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 42566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 40408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 37170) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35012) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 33933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32853) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 31774) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 29616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 28537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24220) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 23141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 17745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 16665) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 15586) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14507) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 13428) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 12349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11269) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 10190) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 9111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 8032) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 6953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5873) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60834) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33854) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6874) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61617) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48667) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34637) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24925) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50530) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38659) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35421) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11679) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5204) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32967) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23255) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 65048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61811) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51018) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24038) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17563) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14326) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62594) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47485) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42089) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41010) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21585) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20505) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15109) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14030) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10793) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60141) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48269) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47190) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42873) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38556) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37477) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35319) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32081) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31002) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28844) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26685) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25606) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24527) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23448) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20210) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19131) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18052) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16972) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15893) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14814) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13735) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10497) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9418) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8339) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7260) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6180) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64162) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62004) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32865) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29627) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28548) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26390) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19915) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16677) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5885) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61708) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58471) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55233) -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50916) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47679) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37966) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36886) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33649) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31490) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30411) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29332) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28253) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27174) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22857) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17461) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16382) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14223) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12065) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10986) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8827) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7748) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6669) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4510) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3431) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1273) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64650) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63571) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62492) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60334) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59254) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56017) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53858) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52779) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51700) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50621) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49542) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48462) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47383) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43066) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41987) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39829) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37670) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36591) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35512) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34433) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27957) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21482) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18245) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15007) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 977) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63276) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60038) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42771) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39533) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33058) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19028) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15791) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13632) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 12553) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9316) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6078) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60822) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59743) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57584) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55426) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53268) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51109) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42476) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40317) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39238) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38159) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33842) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32763) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31684) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30604) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29525) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27367) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24129) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20891) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19812) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17654) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15495) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13337) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12258) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 387) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62685) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59447) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51893) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48655) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45418) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38943) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37863) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32467) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21675) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18438) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 91) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63469) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60231) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56994) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49439) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42964) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39726) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36489) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33251) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30014) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27855) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25697) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24618) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23538) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22459) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20301) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19221) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17063) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13825) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 12746) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11667) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10588) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9509) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7350) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 6271) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4113) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3033) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 875) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65332) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64253) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62094) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61015) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58857) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56698) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54540) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50223) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46985) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44827) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43748) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42669) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41589) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40510) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39431) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38352) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37273) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34035) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31877) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23243) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20005) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 13530) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12451) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65036) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 63957) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 54244) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 48848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 45611) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 42373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 39136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 38056) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 27264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 25106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 21868) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 18631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 15393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 8918) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 2443) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 1363) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 63662) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 60424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59345) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 57187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 55028) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 53949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 50711) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 49632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 48553) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 47474) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 44236) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 43157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 42078) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40999) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 39919) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 38840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 37761) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 36682) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 35603) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 33444) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32365) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 31286) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 30207) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 29127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 28048) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 22652) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 21573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 20494) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 18335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 17256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 16177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 15098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 14019) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 12939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 11860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 10781) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 9702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 8622) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 6464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 5385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 1068) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 65525) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 59050) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 52574) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 49337) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 47178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 43941) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 40703) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 37466) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 34228) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32070) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 28832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 23436) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 22357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 20198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 16961) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 13723) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 10486) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 7248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 6169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 1852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 65229) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 61992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 60913) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 58754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 55517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 53358) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 52279) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 40408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 38249) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 37170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 35012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 33933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32853) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 31774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 29616) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 28537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 24220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 23141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 19903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 18824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 17745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 16665) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 15586) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 14507) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 13428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 12349) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 11269) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 10190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 9111) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 8032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> + +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 132105 ns +Time Done: 251010 ns +Average Rate: 51 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 6953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 5873) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 251130000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 253205 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:27 ; elapsed = 00:42:16 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 6024 ; free virtual = 10172 +## quit +INFO: xsimkernel Simulation Memory Usage: 236636 KB (Peak: 294432 KB), Simulation CPU Usage: 2532250 ms +INFO: [Common 17-206] Exiting xsim at Sat Feb 1 00:41:06 2025... diff --git a/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_two_lanes_bus_delay_0.log b/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_two_lanes_bus_delay_0.log new file mode 100644 index 0000000..9454aae --- /dev/null +++ b/testbench/xsim/test_5_000_ddr3_1_250_odelay_1_lanes_two_lanes_bus_delay_0.log @@ -0,0 +1,18657 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=5... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=5... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 11 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 128 +wb_sel_bits = 16 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 1 +WRITE_SLOT = 0 +ACTIVATE_SLOT = 2 +PRECHARGE_SLOT = 3 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 11 +CWL = 8 +PRECHARGE_TO_ACTIVATE_DELAY = 2 +ACTIVATE_TO_WRITE_DELAY = 3 +ACTIVATE_TO_READ_DELAY = 2 +ACTIVATE_TO_PRECHARGE_DELAY = 6 +ACTIVATE_TO_ACTIVATE_DELAY = 1 +READ_TO_WRITE_DELAY = 2 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 0 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 4 +WRITE_TO_PRECHARGE_DELAY = 5 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 7 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 5000 +DDR3_CLK_PERIOD = 1250 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [101350 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.reset at time 455100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.cmd_task at time 1464450.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] MRS -> ddr3_dimm_micron_sim.ddr3_0.cmd_task: at time 1829450.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] ZQC -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] MRS -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11126325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11131325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11136325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11141325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11146325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11151325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11156325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11161325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11166325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11171325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11176325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11181325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11186325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11191325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11196325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11201325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11206325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11211325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11236325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11241325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11246325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11251325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11256325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11261325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11266325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11271325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11276325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11281325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11286325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11291325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11296325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11301325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11306325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11311325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11316325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11321325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11346325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11351325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11356325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11361325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11366325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11371325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11376325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11381325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11386325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11391325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11396325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11401325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11406325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11411325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11416325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 11421325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11426325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 11431325.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11456402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11466402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11476402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11486402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11496402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11506402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11516402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11526402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11536402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11571480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11576480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11581480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11586480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11591480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11596480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11601480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11606480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11611480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11616480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11621480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11626480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11631480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11636480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11641480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11646480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11651480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 11656480.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12011950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12016950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12021950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12026950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12031950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12036950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12041950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12046950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12051950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12056950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12061950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12066950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12071950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12076950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12081950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12086950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12091950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12096950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12121950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12126950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12131950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12136950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12141950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12146950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12151950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12156950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12161950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12166950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12171950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12176950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12181950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12186950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12191950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12196950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12201950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12206950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12231950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12236950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12241950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12246950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12251950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12256950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12261950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12266950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12271950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12276950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12281950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12286950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12291950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12296950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12301950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12306950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12311950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12316950.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12542026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12652026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12762026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12872026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12896325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12901325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12906325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12911325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12916325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12921325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12926325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12931325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12936325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12941325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12946325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12951325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12956325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12961325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12966325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 12971325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12976325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 12981325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 12982026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13006325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13011325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13016325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13021325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13026325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13031325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13036325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13041325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13046325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13051325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13056325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13061325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13066325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13071325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13076325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13081325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13086325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13091325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13092026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13116325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13121325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13126325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13131325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13136325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13141325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13146325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13151325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13156325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13161325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13166325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13171325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13176325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13181325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13186325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13191325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13196325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13201325.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13202026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13226402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13227026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13231402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13232026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13236402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13237026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13241402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13242026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13246402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13247026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13251402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13252026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13256402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13257026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13261402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13262026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13266402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13267026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13271402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13272026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13276402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13277026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13281402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13282026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13286402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13287026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13291402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13292026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13296402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13297026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13301402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13302026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13306402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13307026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13311402.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13312026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13341480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13342026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13346480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13347026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13351480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13352026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13356480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13357026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13361480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13362026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13366480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13367026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13371480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13372026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13376480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13377026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13381480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13382026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13386480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13387026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13391480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13392026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13396480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13397026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13401480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13402026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13406480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13407026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13411480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13412026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13416480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13417026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13421480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13422026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13426480.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13427026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13452026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13457026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13462026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13467026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13472026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13477026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13482026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13487026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13492026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13497026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13502026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13507026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13512026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13517026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13522026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13527026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13532026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13537026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13562026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13567026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13572026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13577026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13582026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13587026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13592026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13597026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13602026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13607026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13612026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13617026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13622026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13627026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13632026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13637026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13642026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13647026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13672026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13677026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13682026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13687026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13692026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13697026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13702026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13707026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13712026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13717026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13722026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13727026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13732026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13737026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13742026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13747026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13752026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13757026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13781950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13782026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13786950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13787026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13791950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13792026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13796950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13797026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13801950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13802026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13806950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13807026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13811950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13812026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13816950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13817026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13821950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13822026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13826950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13827026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13831950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13832026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13836950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13837026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13841950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13842026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13846950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13847026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13851950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13852026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13856950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13857026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13861950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13862026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13866950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13867026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13891950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13892026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13896950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13897026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13901950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13902026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13906950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13907026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13911950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13912026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13916950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13917026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13921950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13922026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13926950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13927026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13931950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13932026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13936950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13937026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13941950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13942026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13946950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13947026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13951950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13952026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13956950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13957026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13961950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13962026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13966950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13967026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 13971950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13972026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 13976950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 13977026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14001950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14002026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14006950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14007026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14011950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14012026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14016950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14017026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 14021950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14022026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14026950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14027026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14031950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14032026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14036950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14037026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14041950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14042026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 14046950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14047026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14051950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14052026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14056950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14057026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14061950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14062026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14066950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14067026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 14071950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14072026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14076950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14077026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14081950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14082026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 14086950.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14087026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14112026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14112026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14117026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14117026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14122026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14122026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14127026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14127026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14132026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14132026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14137026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14137026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14142026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14142026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14147026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14147026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14152026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14152026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14157026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14157026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14162026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14162026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14167026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14167026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14172026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14172026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14177026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14177026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14182026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14182026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14187026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14187026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14192026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14192026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14197026.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14197026.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] MRS -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 105) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 110) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 117) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 122) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 125) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 127) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 132) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 135) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 137) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 140) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 142) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 147) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 157) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 162) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 197) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 107) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 167) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 172) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 187) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] WR @ (5, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] RD @ (7, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 43860 ns +Time Done: 56565 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32768) -> FAILED: Address = 1151, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092f75e2592f6502592f5422592f43425, read data = 00000000000000000000000123456789 @ 56610000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (5, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (7) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 608) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> +[ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 56565 ns +Time Done: 68920 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65535) -> FAILED: Address = 33555583, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000faf75ef5faf650f5faf542f5faf434f5, read data = 00000000000000000000000123456789 @ 68965000.0 ps +[ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (1) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 65535) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 16) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 56) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 96) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 136) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 176) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 216) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 256) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 296) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 336) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (1, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (2) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 65535) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (3) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65535) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 376) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 416) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 456) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 496) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 536) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 576) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 616) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 976) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 1016) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 40) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 80) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 120) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 160) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 200) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 240) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 280) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 320) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 360) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 400) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 440) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 480) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 520) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 560) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 600) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 640) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1000) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 24) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 64) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 104) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 144) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 184) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 224) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 264) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 304) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 344) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 384) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 464) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 504) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 544) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 584) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 624) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 984) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 8) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 48) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 88) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 128) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 168) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 208) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 248) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 288) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 328) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 368) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 408) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 448) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 488) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 528) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 568) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 608) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 648) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 968) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1008) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 32) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 72) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 112) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 152) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 192) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 232) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 272) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 312) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 352) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 392) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 432) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 472) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 512) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 552) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 592) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 632) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 992) -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (1, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (1, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (1, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (2, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (2, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (2, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (3, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 8) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 32) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 48) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 72) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 88) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 112) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 128) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 152) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 168) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 192) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 208) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 232) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 248) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 272) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 288) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 312) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 328) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 352) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 368) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 392) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 408) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 432) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 448) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 472) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 488) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 512) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 528) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 552) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 568) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 592) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 608) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 632) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 648) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 968) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (3, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 992) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1008) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (3, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 8) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 24) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 48) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 64) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 88) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 104) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 128) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 144) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 168) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 184) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 208) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 224) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 248) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 264) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 288) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 304) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 328) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 344) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 368) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 384) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 408) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 424) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 448) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 464) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 488) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 504) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 528) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 544) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 568) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 584) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 608) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 624) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 648) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 968) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 984) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1008) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 16) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 24) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 40) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 56) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 64) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 80) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 96) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 104) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 120) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 136) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 144) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 160) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 176) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 184) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 200) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 216) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 224) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 240) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 256) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 264) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 280) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 296) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 304) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 320) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 336) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 344) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 360) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 376) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 384) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 400) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 416) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 424) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 440) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 456) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 464) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 480) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 496) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 504) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 520) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 536) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 544) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 560) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 576) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 584) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 600) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 616) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 624) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 640) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 976) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 984) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1000) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (5, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (5, 1016) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 16) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 32) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 40) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 56) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 72) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 80) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 96) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 112) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 120) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 136) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 152) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 160) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 176) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 192) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 200) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 232) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 240) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 256) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 272) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 280) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 296) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 312) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 320) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 336) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 352) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 360) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 376) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 392) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 400) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 416) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 432) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 440) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 456) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 472) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 480) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 496) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 512) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 520) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 536) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 552) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 560) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 576) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 592) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 600) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 616) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 632) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 640) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 976) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (6, 992) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1000) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (6, 1016) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 200) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] RD @ (7, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 216) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (7, 65535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 992) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (7, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (7, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 8) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 16) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 24) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 32) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 40) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 48) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 56) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 64) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 72) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 80) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 88) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 96) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 104) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 112) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 120) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 128) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 136) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 144) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 152) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 160) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 168) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 176) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 184) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 192) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 200) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 208) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 216) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 224) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 232) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 240) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 248) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 256) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 264) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 272) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 280) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 288) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 296) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 304) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 312) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 320) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 328) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 336) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 344) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 352) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 360) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 368) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 376) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 384) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 392) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 400) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 408) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 416) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 424) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 432) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 440) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 448) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 456) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 464) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 472) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 480) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 488) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 496) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 504) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 512) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 520) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 528) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 536) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 544) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 552) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 560) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 568) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 576) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 584) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 592) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 600) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 608) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 616) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 624) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 632) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 640) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 648) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 968) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 976) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 984) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 992) -> +[ 1250 ps] NOP -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 68920 ns +Time Done: 81705 ns +Average Rate: 5 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1000) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 1008) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 1016) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2852) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> FAILED: Address = 67108991, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521a8fa4521981a4521873a4521765a4, read data = 00000000000000000000000123456789 @ 81750000.0 ps +[ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2582) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2312) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1503) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1233) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 963) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64881) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64611) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64341) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63801) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63532) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63262) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62722) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62452) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62183) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61643) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61103) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60564) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60294) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60024) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59485) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59215) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58945) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58405) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57866) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57596) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57326) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57056) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56787) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56247) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55977) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55707) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54898) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54628) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54089) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53819) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53549) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53009) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52740) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52470) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51930) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51660) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51391) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50851) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50581) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50311) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49772) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49502) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 944) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48693) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48423) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48153) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47613) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47074) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46534) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45995) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45455) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44915) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44376) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43836) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43297) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43027) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42757) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42217) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41678) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 936) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40868) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40599) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40059) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39519) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38980) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37631) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37361) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36821) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36282) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35742) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35203) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34663) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34123) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33584) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33044) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32505) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32235) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31965) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31425) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31156) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30886) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30346) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30076) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29807) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29267) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28727) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28188) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27109) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26839) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26569) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26029) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25490) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24950) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24411) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23871) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23331) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22252) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21713) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21443) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20633) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20364) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20094) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19554) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19284) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19015) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18475) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18205) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17935) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17396) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16317) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16047) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15237) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14698) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13619) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13079) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12809) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12539) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12000) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11460) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10921) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10651) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9841) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9572) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9302) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8762) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8492) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8223) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7683) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7143) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6604) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6064) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5525) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5255) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4985) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4445) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3906) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3366) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3096) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2827) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2017) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1747) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 668) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65395) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65125) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64585) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64315) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64046) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63506) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63236) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62427) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62157) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61887) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61348) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61078) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60268) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59999) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59729) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59189) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58919) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58650) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58110) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57570) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57031) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56761) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56491) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55952) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55682) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55412) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54603) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54333) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53793) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53523) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53254) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52714) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52444) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52174) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51635) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51365) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51095) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50556) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 50286) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49476) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49207) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48937) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48397) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48127) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47858) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47318) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47048) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46778) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46239) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45699) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44620) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43811) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43541) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43001) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42462) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41922) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41652) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41382) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40843) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40303) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39764) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38684) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38415) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37605) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37066) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36526) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36256) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35986) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35447) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34907) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34368) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33828) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33019) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32749) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32209) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31670) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30860) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29511) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28972) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27892) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27623) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 27353) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26813) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26274) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25734) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24655) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24115) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23576) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23036) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22227) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21957) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21417) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20878) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20338) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20068) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19798) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19259) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18989) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18719) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18180) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17910) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16831) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16021) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15482) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14942) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14402) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13863) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13593) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13323) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12514) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12244) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11435) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10625) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10086) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9546) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9276) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9006) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8467) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 840) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7927) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7388) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6308) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6039) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5229) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4690) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3880) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3610) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2531) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1992) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1722) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1452) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 643) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65369) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64830) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64290) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64020) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63750) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63211) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62941) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62671) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62131) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61052) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60782) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60513) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59973) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59703) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59433) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58894) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58354) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57815) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 824) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57275) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56735) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56466) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56196) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55386) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54577) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54307) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54037) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53498) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53228) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52958) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52419) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52149) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51879) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51339) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51070) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50260) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49990) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49721) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49181) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48911) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48641) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48372) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48102) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47832) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47562) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47023) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46483) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45943) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45404) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44594) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44325) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43785) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43515) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43245) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42706) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42436) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42166) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41627) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 808) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41087) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40547) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40278) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39468) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39198) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38929) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38389) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37849) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37580) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37310) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37040) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36770) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36231) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35961) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35691) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35151) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34612) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34072) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33802) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33533) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 800) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32993) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32723) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32453) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 32184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31914) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31644) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31374) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30835) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30565) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30295) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29755) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29486) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28676) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28406) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27597) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27327) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27057) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26788) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26518) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26248) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25978) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25439) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25169) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24899) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24359) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24090) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23820) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23010) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22201) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21931) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21661) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20852) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20582) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 20043) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19503) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18963) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18694) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17884) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17614) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17345) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16805) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16535) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16265) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15996) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15726) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15456) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15186) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14377) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14107) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13567) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 13298) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13028) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12218) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11409) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11139) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10869) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10330) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10060) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9790) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9251) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8981) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8711) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8171) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7902) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7092) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6822) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 6553) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6013) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5743) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5473) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5204) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4934) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4394) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3855) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3585) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3315) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2775) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2506) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2236) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1426) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 617) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 347) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 77) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 65344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65074) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64804) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64534) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63995) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63455) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62915) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61836) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61566) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61297) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60757) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60217) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59678) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58598) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58059) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57519) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57249) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56980) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56170) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55900) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55361) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54821) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54551) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54282) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54012) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53742) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53202) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52663) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52123) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51853) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51044) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50774) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49965) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49695) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49425) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49155) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48886) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48346) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47806) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47267) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46727) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45378) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45108) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44569) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44029) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43759) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43490) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43220) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42950) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42410) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41871) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41331) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41061) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40252) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39982) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39173) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38633) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38094) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37554) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37014) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36475) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35935) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35665) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35396) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34586) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34316) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33777) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33507) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33237) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32967) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32698) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32428) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31618) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31079) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30539) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30269) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29460) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29190) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28381) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27841) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27571) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27032) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26762) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26222) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25683) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25143) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24873) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24604) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 728) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24064) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23794) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23524) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22985) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22445) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22175) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21636) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21366) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20826) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20557) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20287) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19747) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 19477) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18668) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18398) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17589) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17319) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17049) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16510) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 720) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16240) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15970) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15430) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15161) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14891) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14351) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 14081) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13812) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13002) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 12732) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12193) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11923) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11653) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11383) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11114) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10844) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10574) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10034) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9765) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9495) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8955) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8685) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 712) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7876) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7606) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 7336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6797) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6527) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6257) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5718) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5448) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5178) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4638) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4369) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4099) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3559) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2210) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1940) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1401) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 861) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65318) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64509) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64239) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63699) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62620) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62350) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61541) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61271) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61001) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60462) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60192) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59922) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59382) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58843) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58303) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56954) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56684) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56145) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55875) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55605) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55065) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54796) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54526) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53986) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53716) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53447) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52907) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52637) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52367) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51828) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51558) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 51288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50749) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50479) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50209) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49669) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 688) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49400) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48051) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47511) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46971) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46702) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46162) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45892) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45353) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45083) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44813) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44273) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44004) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43734) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42924) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42655) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42115) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41575) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41036) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40766) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39957) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39417) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38877) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38608) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38338) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37798) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37259) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36719) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36179) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35370) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34561) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34021) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 33751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 672) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33212) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32942) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32402) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31863) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31323) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 31053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30783) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30244) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29974) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29165) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28625) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28085) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27816) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27546) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27006) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26467) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25927) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25387) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24578) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24308) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23769) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23499) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23229) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22689) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22420) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21610) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21340) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21071) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20531) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19991) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] WR @ (4, 656) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2582) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2312) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2043) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1503) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1233) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 963) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 960) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64881) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64611) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64341) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 64071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63532) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63262) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62722) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62452) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62183) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61643) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61103) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60564) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60294) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60024) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59485) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59215) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58945) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58405) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 58136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57866) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 952) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 952) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 57326) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57056) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56787) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56247) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55977) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55707) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55168) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54898) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54628) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54089) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53819) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53549) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53009) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52740) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52470) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51930) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51660) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 51391) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50851) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50581) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50311) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49772) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49502) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49232) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 944) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48962) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48693) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48423) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48153) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47613) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47344) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47074) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46534) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45995) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45455) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44915) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 44646) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44106) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 43836) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43297) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43027) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42757) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42217) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41948) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41678) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 936) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41138) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 936) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40868) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40599) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40059) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39789) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39519) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38980) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 38710) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 37901) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37361) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37091) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36821) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36552) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36282) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35742) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35203) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34663) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34393) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34123) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33314) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 928) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33044) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 928) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32505) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32235) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31965) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31425) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31156) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30886) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30346) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29807) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 29537) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29267) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28997) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28727) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28188) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27918) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27648) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27109) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26839) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26569) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26029) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25490) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24950) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24680) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 920) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24411) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23871) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23601) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23331) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22252) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21713) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21443) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21173) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20633) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20364) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20094) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19554) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19284) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19015) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18475) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18205) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17935) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17666) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17396) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17126) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 912) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16317) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16047) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15237) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14698) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14428) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14158) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13888) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13619) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13079) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12809) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12539) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12000) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11730) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11460) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10921) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10651) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10381) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9841) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9572) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8762) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 8492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8223) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 904) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 7683) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7413) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7143) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6604) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6334) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6064) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5525) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5255) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4985) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4445) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3906) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3366) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3096) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2827) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2557) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2287) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2017) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 1747) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1208) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 668) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 896) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65395) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65125) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64585) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64315) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64046) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63506) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63236) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62427) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62157) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61887) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61348) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61078) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60808) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 60538) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60268) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59999) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 59729) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59189) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 58919) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58650) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58110) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57570) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 888) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57031) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56761) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56491) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55682) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55412) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54872) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54603) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54333) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53793) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53523) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53254) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52714) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52444) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52174) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51635) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51365) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51095) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50556) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50286) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49476) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 880) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49207) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 880) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48937) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48667) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48397) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48127) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47858) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47318) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46778) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46239) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45969) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45699) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44890) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44620) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44350) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43811) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 43541) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43001) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42731) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42462) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41922) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41652) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41382) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 872) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 872) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40843) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40303) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39494) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38684) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38415) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37605) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37066) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 36796) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36526) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36256) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35986) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35447) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35177) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34907) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34368) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34098) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33828) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 864) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33019) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 864) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32749) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32479) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32209) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31939) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31670) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31130) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30860) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 30051) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29511) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 29241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28972) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28702) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27892) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27623) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27353) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26813) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26543) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26274) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25734) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25194) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24925) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24655) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 856) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24385) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23576) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 23306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23036) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 22496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22227) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21957) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21417) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21147) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20878) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20338) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20068) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19798) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19259) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18989) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18719) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18180) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17910) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17640) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 17370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17100) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 848) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16831) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 16561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 848) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16021) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 15751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15482) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14942) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14402) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13863) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13593) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13323) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12514) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12244) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11704) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11435) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11165) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10625) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10355) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10086) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9546) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9276) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9006) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8467) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 840) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7927) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7388) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7118) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6848) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6308) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6039) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5769) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5229) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4959) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4690) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4150) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3610) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2801) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2531) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1722) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1452) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 912) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 643) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 373) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 832) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65369) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64830) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64290) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63750) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63481) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63211) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62941) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62671) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62131) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61862) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61592) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61052) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60782) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60513) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60243) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59973) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59703) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 59433) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59164) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58894) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58624) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58354) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 824) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57815) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57545) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 824) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57275) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56735) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56466) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56196) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55926) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55386) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55117) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54577) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54307) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54037) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 53498) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53228) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52958) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 52688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52419) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52149) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51879) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51339) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51070) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50260) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49990) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49721) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49181) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 816) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48911) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48641) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48372) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48102) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47832) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47562) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47023) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46753) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46483) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45943) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45674) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45404) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44594) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44325) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43785) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43515) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43245) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42706) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42436) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42166) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 41627) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41357) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 808) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41087) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 808) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40817) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40547) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40278) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39468) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39198) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38929) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38389) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38119) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37849) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37310) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37040) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36770) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36231) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35961) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 35691) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35151) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 34882) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34612) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34072) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33802) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 33533) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32993) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 800) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32723) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32453) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31914) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31644) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31374) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30835) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30565) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30295) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29755) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29486) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29216) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 28946) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28676) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28406) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 28137) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27597) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27327) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27057) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26518) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25978) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25708) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25439) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25169) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24899) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 792) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24359) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24090) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23820) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23280) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23010) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22741) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22201) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21931) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21661) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 21392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21122) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20852) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 20582) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20043) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19773) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 19503) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18963) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18694) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18424) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 18154) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17884) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17614) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17345) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16805) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 784) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16535) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 784) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 16265) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15726) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15186) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 14647) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14377) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14107) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13567) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13298) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13028) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12218) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 11949) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11679) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11409) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11139) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10869) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10330) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10060) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 9790) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9251) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8981) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 8711) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 776) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8171) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7902) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7092) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6822) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6553) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6013) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5743) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5473) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5204) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4934) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4664) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4394) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3855) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 3585) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3315) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 2775) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2506) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2236) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 1966) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1426) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1157) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 617) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 768) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 347) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 77) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 768) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65074) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64804) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64534) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 63995) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63725) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63455) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63185) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62915) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62646) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61836) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 61566) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61297) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 60757) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60487) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60217) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59678) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59408) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59138) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58598) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58329) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58059) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57519) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 760) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 57249) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56980) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56170) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55900) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 55631) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55361) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55091) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 54821) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54282) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54012) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53742) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53202) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52933) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52663) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52123) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51853) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51584) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51044) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50774) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 50504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49965) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 49695) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49425) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 752) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 48886) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48346) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48076) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47806) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47537) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 47267) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46727) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 46457) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46188) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45648) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45378) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45108) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44569) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44299) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44029) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43490) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43220) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 42950) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42410) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 42141) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41871) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 41331) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41061) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 744) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 40792) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 40522) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40252) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39982) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39443) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39173) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38903) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38633) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38094) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37554) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37014) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36745) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36475) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 36205) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35935) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35665) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 35396) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34856) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34586) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34316) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33777) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33507) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33237) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32967) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 736) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32698) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32428) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32158) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31618) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31349) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31079) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] NOP -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30539) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 30269) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29460) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29190) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28920) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28381) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28111) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27841) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27302) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27032) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 26762) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26222) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 25953) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25683) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25143) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24873) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 728) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24604) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 728) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 24064) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23794) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 23524) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22985) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 22715) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22445) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21906) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21636) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21366) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20826) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20557) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20287) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19747) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19477) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 19208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 18668) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 18398) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 18128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 17589) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 17319) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 17049) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16510) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 720) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 16240) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 15970) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 15430) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15161) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14891) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14351) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 14081) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13812) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 13272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 13002) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 12732) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 12463) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 12193) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11923) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 11653) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 11114) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 10844) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 10574) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 10034) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9765) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 9495) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 9225) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8955) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 8685) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 712) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8416) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 712) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7876) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7606) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 7336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6797) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 6527) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 6257) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 5718) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 5178) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 4908) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 4638) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4369) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 4099) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 3559) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 3289) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3020) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 2480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 2210) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 1940) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1401) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1131) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 861) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 322) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 704) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65318) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 64509) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64239) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 63699) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63429) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 63160) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 62890) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62620) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 62350) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 62080) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 61541) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 61271) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61001) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60462) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 60192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59922) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 59382) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 59113) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58843) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58303) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 58033) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 57764) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57494) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 696) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 57224) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 56954) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56684) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 56145) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 55875) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55605) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 55065) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 54796) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 54526) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 53986) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 53716) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53447) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52907) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52637) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 52367) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 51828) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51558) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51288) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50749) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 50479) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 50209) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 49669) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 49400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 688) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 49130) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 48590) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 48320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 48051) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] REF -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] NOP -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 47511) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 47241) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46971) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 46702) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 46432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 46162) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 45892) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 45353) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 45083) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44813) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 44273) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 44004) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 43734) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42924) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42655) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 42115) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41845) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 41575) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 41036) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 680) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 40766) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 40226) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 39957) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 39687) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 39417) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 39147) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38877) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 38608) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 38338) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 37798) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 37528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 37259) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36719) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36449) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 36179) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 35640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35370) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 35100) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34561) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 34291) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 34021) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 33481) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 33212) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 32942) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 672) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 32402) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32132) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 31863) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31323) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 31053) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 30783) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 30244) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29974) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 29165) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 28895) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28625) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 28085) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 27546) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 27276) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 27006) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 26736) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 26467) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25927) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 25657) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 25387) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (0, 24848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24578) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 664) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 24308) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] ACT @ (4, 24038) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23769) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 23499) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 23229) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 22689) -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> +[ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22420) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 22150) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21610) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 21340) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 21071) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] PRE @ (0) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 20531) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 81705 ns +Time Done: 201115 ns +Average Rate: 51 ns/request +-------------------------------- + + +[ 2500 ps] NOP -> [ 1250 ps] RD @ (0, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 20261) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 1250 ps] PRE @ (4) -> [ 1250 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 19991) -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 1250 ps] RD @ (4, 656) -> [ 1250 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> FAILED: Address = 75846088, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c9c1ad56c8b3ad56c7a5ad56c697ad, read data = 00000000000000000000000123456789 @ 201235000.0 ps +[ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> +[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 203310 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:18 ; elapsed = 00:11:24 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 5023 ; free virtual = 10245 +## quit +INFO: xsimkernel Simulation Memory Usage: 156312 KB (Peak: 210572 KB), Simulation CPU Usage: 683030 ms +INFO: [Common 17-206] Exiting xsim at Sat Feb 1 03:39:29 2025... diff --git a/testbench/xsim/test_6_000_ddr3_1_500_odelay_0_lanes_two_lanes_bus_delay_0.log b/testbench/xsim/test_6_000_ddr3_1_500_odelay_0_lanes_two_lanes_bus_delay_0.log new file mode 100644 index 0000000..e2a67ed --- /dev/null +++ b/testbench/xsim/test_6_000_ddr3_1_500_odelay_0_lanes_two_lanes_bus_delay_0.log @@ -0,0 +1,14314 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:594] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:595] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:597] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:598] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:599] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:600] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:846] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:847] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:849] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:850] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:851] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:852] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:853] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1030] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1031] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1033] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1034] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1035] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1036] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=6... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=6... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 11 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 128 +wb_sel_bits = 16 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 3 +WRITE_SLOT = 1 +ACTIVATE_SLOT = 0 +PRECHARGE_SLOT = 2 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 9 +CWL = 7 +PRECHARGE_TO_ACTIVATE_DELAY = 2 +ACTIVATE_TO_WRITE_DELAY = 2 +ACTIVATE_TO_READ_DELAY = 1 +ACTIVATE_TO_PRECHARGE_DELAY = 5 +ACTIVATE_TO_ACTIVATE_DELAY = 1 +READ_TO_WRITE_DELAY = 2 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 7 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 0 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> +[ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] MRS -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.cmd_task at time 1479750.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_0.cmd_task: at time 1845750.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] ZQC -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 101) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 102) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 104) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 105) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 106) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 107) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 109) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 110) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 111) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 112) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 114) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 116) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 119) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 120) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 121) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 122) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 124) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 126) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 129) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 132) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 134) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 135) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 136) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 139) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 140) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 141) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 144) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 146) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 148) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 149) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 151) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 153) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 154) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 155) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 156) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 158) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 159) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 161) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 163) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 164) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 166) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 167) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 168) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 169) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 171) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 172) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 174) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 176) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 179) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 181) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 183) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 184) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 185) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 186) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 187) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 188) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 190) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 191) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 193) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 195) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 196) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 198) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 199) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 100) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 101) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 102) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 104) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 105) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 106) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 107) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 108) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 109) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 110) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 111) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 112) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 113) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 114) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 115) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 116) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 117) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 118) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 119) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 120) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 121) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 122) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 123) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 124) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 125) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 126) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 127) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 128) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 129) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 130) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 132) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 133) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 134) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 135) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 136) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 137) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 138) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 139) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 140) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 141) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 142) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 143) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 144) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 145) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 146) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 147) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 148) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 149) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 150) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 151) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 152) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 153) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 154) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 155) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 156) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 157) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 158) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 159) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 160) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 161) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 162) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 163) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 164) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 165) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 166) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 167) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 168) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 169) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 170) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 171) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 172) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 173) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 174) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 175) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 176) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 177) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 178) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 179) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 180) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 181) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 182) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 183) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 184) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 185) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 186) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 187) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 188) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 189) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 190) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 191) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 192) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 193) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 195) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 196) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 197) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 198) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 199) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 952) -> [ 4500 ps] ACT @ (2, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] ACT @ (2, 0) -> [ 1500 ps] WR @ (1, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] ACT @ (3, 0) -> +[ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> +[ 4500 ps] ACT @ (4, 0) -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] ACT @ (5, 0) -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> [ 4500 ps] ACT @ (6, 0) -> [ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> [ 4500 ps] ACT @ (7, 0) -> [ 1500 ps] WR @ (6, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 1) -> +[ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 1) -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 1500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (2, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 944) -> [ 1500 ps] ACT @ (3, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> +[ 1500 ps] ACT @ (4, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] ACT @ (5, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 1500 ps] ACT @ (6, 0) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 1500 ps] ACT @ (7, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 1500 ps] ACT @ (0, 1) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] ACT @ (1, 1) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 47802 ns +Time Done: 62586 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +FAILED: Address = 1151, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092f75e2592f6502592f5422592f43425, read data = 00000000000000000000000123456789 @ 62640000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 32768) -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 952) -> [ 1500 ps] PRE @ (2) -> +[ 3000 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] ACT @ (2, 32768) -> +[ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 952) -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 968) -> [ 4500 ps] ACT @ (3, 32768) -> [ 1500 ps] WR @ (2, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> +[ 4500 ps] ACT @ (4, 32768) -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] ACT @ (5, 32768) -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> [ 4500 ps] ACT @ (6, 32768) -> [ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> [ 4500 ps] ACT @ (7, 32768) -> [ 1500 ps] WR @ (6, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 32769) -> +[ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] ACT @ (1, 32769) -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32768) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 32768) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] ACT @ (2, 32768) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] ACT @ (5, 32768) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 1500 ps] ACT @ (6, 32768) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 944) -> [ 1500 ps] ACT @ (7, 32768) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> +[ 1500 ps] ACT @ (0, 32769) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 32769) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 62586 ns +Time Done: 77400 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65535) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 33555583, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000faf75ef5faf650f5faf542f5faf434f5, read data = 00000000000000000000000123456789 @ 77454000.0 ps +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 65535) -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 944) -> [ 4500 ps] ACT @ (2, 65535) -> [ 1500 ps] WR @ (1, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] ACT @ (3, 65535) -> [ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> +[ 4500 ps] ACT @ (4, 65535) -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> [ 4500 ps] ACT @ (5, 65535) -> [ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 65535) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 944) -> [ 4500 ps] ACT @ (6, 65535) -> [ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> [ 4500 ps] ACT @ (7, 65535) -> [ 1500 ps] WR @ (6, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] WR @ (7, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] ACT @ (1, 0) -> +[ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65535) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 65535) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] ACT @ (2, 65535) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 1500 ps] ACT @ (3, 65535) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 944) -> [ 1500 ps] ACT @ (4, 65535) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (6, 65535) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 1500 ps] ACT @ (7, 65535) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] ACT @ (0, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 77400 ns +Time Done: 92214 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 67108991, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521a8fa4521981a4521873a4521765a4, read data = 00000000000000000000000123456789 @ 92268000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2312) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2582) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (1, 2043) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2312) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2043) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 1773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (5, 1503) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 1503) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 1233) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1233) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 963) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 694) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 963) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 694) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 424) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 154) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 424) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 154) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65420) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64881) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 65150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64341) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64611) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64071) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63532) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63262) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62722) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62183) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62452) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61643) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61913) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60834) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60294) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60564) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60024) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59485) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59754) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58945) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58405) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57596) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57866) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57326) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56787) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57056) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56247) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56517) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55977) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55438) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55707) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54898) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55168) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54628) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54089) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53549) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53819) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53279) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52740) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53009) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52200) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52470) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51930) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51391) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51660) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50851) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51121) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50581) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50042) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50311) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49502) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49772) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49232) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48693) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48962) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48153) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48423) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47344) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47613) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47074) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46534) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45995) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46264) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45455) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44646) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44915) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44106) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44376) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43836) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43297) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42757) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 43027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42487) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41948) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42217) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41408) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41678) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40599) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40868) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40059) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40329) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39789) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39250) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39519) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38710) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38980) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38440) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37901) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37361) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37631) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37091) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36552) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36821) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36012) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 36282) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35742) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35203) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35472) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34933) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34393) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34663) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33854) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33584) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33044) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33314) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32505) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32774) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] ACT @ (4, 31695) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31965) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31156) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31425) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30886) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30346) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30616) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 29807) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30076) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29537) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28997) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29267) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28458) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28727) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28188) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27648) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27109) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27378) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26839) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26299) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26569) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25760) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26029) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25490) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24950) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25220) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24411) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23871) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23062) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23331) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22792) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22252) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22522) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21713) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20903) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20364) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20633) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20094) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19554) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19015) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18205) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18475) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17666) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17935) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17396) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16856) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16317) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16586) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16047) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15507) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15777) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14968) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15237) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14698) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14158) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13619) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13888) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13349) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12809) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13079) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12270) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12539) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12000) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11460) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11730) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10921) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10651) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10381) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9572) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9841) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9302) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8762) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9032) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8223) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7413) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7683) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6874) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7143) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6604) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6064) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5525) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5794) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5255) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4715) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4985) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4176) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4445) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3366) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3636) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2827) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3096) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2557) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2017) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2287) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1478) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1747) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 668) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 398) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65395) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 128) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64855) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64046) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64315) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63506) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63776) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63236) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62697) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62966) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62427) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61887) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61348) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61617) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60808) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61078) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60538) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59999) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60268) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59459) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59729) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58650) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58919) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58110) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58380) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57840) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57301) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57570) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56761) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57031) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56491) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55952) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56221) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55412) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55682) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54603) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54872) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54063) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54333) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53793) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53254) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53523) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52714) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52984) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52444) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51905) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52174) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51365) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51635) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51095) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50556) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50825) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50016) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50286) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49746) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49207) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49476) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48667) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48937) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48397) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] ACT @ (0, 47858) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47318) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47588) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46778) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45969) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46239) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45699) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45429) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44620) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44890) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44350) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43811) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44080) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43541) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43001) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42462) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42731) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41922) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42192) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41652) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41113) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41382) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40573) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40843) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40303) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39764) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40033) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39224) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37875) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38145) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37605) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37066) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37335) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36526) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36796) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35717) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35177) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35447) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34907) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34368) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34637) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33828) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33558) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33019) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33288) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32479) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32749) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32209) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31670) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31400) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30860) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30321) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30590) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30051) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29511) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28972) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28432) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27623) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27892) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27353) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26813) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26274) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26543) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26004) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25464) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25734) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24925) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24655) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23576) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23845) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23306) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22766) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22227) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22496) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21417) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21687) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20878) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20068) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20338) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19529) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19798) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19259) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18719) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18989) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18449) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17910) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17370) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16831) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17100) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16561) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16021) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15482) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14672) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14942) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14133) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14402) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13863) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13323) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13593) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12784) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13053) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12514) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11974) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12244) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11435) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11704) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10625) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10086) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10355) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9816) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9276) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9546) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8737) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9006) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 8467) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7927) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8197) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7388) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6578) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6848) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6039) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6308) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5769) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5229) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5499) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4690) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4959) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4420) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3880) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3341) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3610) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3071) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2531) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2261) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1722) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 1182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1452) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 643) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 912) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65369) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64830) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 65099) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64560) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] ACT @ (4, 64020) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64290) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63481) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63750) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63211) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62671) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62401) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61862) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61322) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61592) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61052) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60513) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60782) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59973) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60243) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59164) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59433) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58624) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58894) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58354) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57815) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58084) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57275) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57545) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57005) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56466) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56735) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55926) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56196) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55656) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55386) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54577) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54847) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54307) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53768) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54037) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53228) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53498) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52958) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52419) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52688) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51879) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52149) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51609) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51070) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50530) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 50800) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50260) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49721) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49990) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49181) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49451) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48911) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48372) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48641) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47832) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48102) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47562) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47023) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47292) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46483) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46213) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45674) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45943) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45134) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45404) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44864) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44325) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44594) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43785) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44055) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43515) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42976) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43245) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42436) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42706) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42166) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41627) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41896) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41087) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41357) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40817) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40278) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40547) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39738) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40008) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39468) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38929) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38389) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38659) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38119) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37580) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37849) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37040) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37310) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36770) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 36231) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36500) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35691) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35961) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35421) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34882) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35151) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34342) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34612) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34072) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33533) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33802) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32993) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33263) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32184) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32453) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31644) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31914) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31374) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30835) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31104) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30295) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30025) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 29486) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29755) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28946) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29216) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28676) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28406) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27867) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27327) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27597) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26788) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27057) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26518) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25978) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26248) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25439) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25708) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24629) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24899) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24090) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24359) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23820) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23280) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23550) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22741) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23010) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22471) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21931) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22201) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21392) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21661) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21122) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20582) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20043) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20312) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19773) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19233) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19503) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18694) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18963) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17884) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18154) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17345) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17614) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16535) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16805) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15996) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16265) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15726) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15456) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15186) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 776) -> [ 4500 ps] ACT @ (0, 14647) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14916) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14377) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13837) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14107) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13298) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13567) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13028) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12488) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12758) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11949) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12218) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11409) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10600) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10869) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10330) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9790) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10060) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9251) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9520) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8981) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8441) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8711) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7902) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8171) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7632) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7092) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7362) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6553) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6822) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6283) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5743) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6013) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5204) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5473) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4934) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4394) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4664) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3855) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3045) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3315) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2506) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2775) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2236) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1696) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1966) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1426) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 887) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 347) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 617) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65344) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 77) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65074) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64534) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63995) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63455) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62646) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62915) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62376) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61836) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61297) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61566) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61027) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60487) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60757) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59948) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60217) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59678) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58868) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58329) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58598) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57789) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58059) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57519) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56980) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57249) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56440) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56710) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56170) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55631) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55900) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55361) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54821) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54282) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54551) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53742) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54012) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53472) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52933) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53202) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52393) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52663) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51584) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51853) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51044) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51314) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50774) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50504) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49695) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49965) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49425) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48886) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49155) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48346) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48616) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46997) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47267) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46727) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46188) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46457) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45648) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45108) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44299) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44569) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44029) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43490) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43759) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42950) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43220) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42680) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42141) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42410) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41871) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41331) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40792) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41061) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40252) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40522) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39982) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39443) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39712) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38903) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38633) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38363) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37554) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37014) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36205) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36475) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35935) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35396) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35665) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34856) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34047) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34316) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33507) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33777) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33237) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32698) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32967) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32158) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 32428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31888) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31618) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31349) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] ACT @ (4, 30809) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31079) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30539) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30000) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30269) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29460) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29730) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29190) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28651) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28920) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28381) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27841) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27302) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27571) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26762) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27032) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26492) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25953) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26222) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25413) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25683) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24604) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24873) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24334) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23794) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24064) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23255) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23524) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22985) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22445) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22715) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21906) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22175) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21636) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21096) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21366) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20557) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 20826) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19747) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20017) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19208) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19477) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18398) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18668) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17859) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18128) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17589) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17049) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17319) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16510) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16779) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16240) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15700) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15970) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15161) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15430) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14891) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14351) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14621) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13812) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14081) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13542) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 13002) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13272) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12463) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12732) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11653) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11923) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11114) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11383) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10844) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10304) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10574) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9765) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10034) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9495) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8955) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9225) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8416) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8685) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8146) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7606) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7876) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7067) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7336) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6797) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6257) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6527) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5718) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5987) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5448) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4908) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4369) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4638) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4099) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3559) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3829) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3020) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3289) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2210) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2480) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1671) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1940) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1401) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 861) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 322) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 591) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 65048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65318) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64509) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64239) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63699) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63969) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63429) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62890) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62350) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62620) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61541) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61001) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60462) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60731) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60192) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59652) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59922) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59382) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58843) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58303) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58573) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57764) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58033) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57224) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56684) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56145) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55605) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55875) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55335) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54796) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55065) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54526) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53447) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53716) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52907) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52637) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52367) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51558) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51828) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51288) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50749) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51018) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50209) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50479) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49400) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49669) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48860) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49130) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48590) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] ACT @ (0, 48051) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48320) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47511) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46971) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46432) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45892) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45353) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45622) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44813) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44004) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44273) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43464) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43734) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43194) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42655) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42924) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41306) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41575) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40766) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40496) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40226) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39417) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39687) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39147) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38608) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38877) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38068) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38338) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37798) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37259) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37528) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36719) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36989) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36449) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35910) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36179) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35370) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34830) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34021) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32672) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32942) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32402) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31863) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32132) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31323) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31593) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31053) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30514) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30783) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29974) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30244) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29704) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29165) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29434) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28625) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28085) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27276) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27546) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27006) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26467) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26736) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25927) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26197) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25657) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25118) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25387) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24578) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24848) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24308) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23769) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24038) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23229) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23499) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22959) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22420) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22689) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21880) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21610) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21340) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20801) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20261) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20531) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19991) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2582) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2312) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2582) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 1500 ps] ACT @ (1, 2043) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2312) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2043) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 1773) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 1503) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1503) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 1233) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> +[ 3000 ps] ACT @ (4, 1233) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 963) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 694) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 963) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 694) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (1, 424) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (5, 154) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65420) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64881) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64611) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64341) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63532) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63801) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63262) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62992) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62722) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62183) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62452) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61913) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61643) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61373) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60834) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60564) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60294) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60024) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59485) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58945) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58136) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58405) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57866) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57596) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57326) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56787) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57056) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56517) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56247) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55977) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55438) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55707) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55168) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54898) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54628) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54089) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53819) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53549) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52740) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53009) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52470) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52200) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51930) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51391) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51660) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50851) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50581) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50042) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50311) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49772) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49502) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49232) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48693) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48962) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48423) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48153) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47883) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47344) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47613) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47074) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46804) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46534) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45995) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45455) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44646) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44915) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44376) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44106) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43836) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43297) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43566) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42757) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42487) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41948) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42217) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41678) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41408) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40599) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40868) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40329) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40059) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39789) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39250) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39519) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38980) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38710) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38440) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37901) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37631) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37361) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36552) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36821) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36282) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36012) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35742) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35203) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35472) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34933) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34393) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34663) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33854) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33584) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33044) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33314) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32774) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32505) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32235) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31695) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31965) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31425) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31156) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30886) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30346) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30616) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29807) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 29537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28997) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29267) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28727) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28458) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28188) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27648) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27109) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26299) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26569) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26029) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25760) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25490) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24950) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25220) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24680) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24411) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24141) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23601) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23871) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23331) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23062) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22792) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22252) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21713) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 20903) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20633) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20364) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19554) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19824) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19284) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19015) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18745) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18205) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18475) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17935) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17666) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17396) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16856) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16317) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16047) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15507) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15777) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15237) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14968) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14698) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14158) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13888) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13619) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13349) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12809) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13079) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12539) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12270) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12000) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11460) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11730) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11190) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10921) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10651) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10111) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10381) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9841) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9572) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9302) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8762) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 8223) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7413) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7683) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6874) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6604) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6064) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6334) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5794) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5525) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5255) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4715) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4985) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4445) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4176) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3906) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3366) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3636) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2827) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2557) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2017) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1747) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1478) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 668) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 398) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65395) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64855) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64046) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64315) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63776) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63506) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63236) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62697) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62966) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62427) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62157) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61887) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61348) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61617) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61078) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60808) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60538) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59999) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60268) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59729) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59459) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58650) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58919) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58380) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58110) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57840) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57301) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57570) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57031) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56761) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56491) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55952) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56221) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55682) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55412) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55142) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54603) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54872) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54333) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54063) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53793) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53254) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53523) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52984) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52714) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52444) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51905) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52174) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51635) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51365) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51095) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50556) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50825) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50286) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50016) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49746) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49207) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49476) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48937) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48667) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48397) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47858) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47588) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47318) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46509) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46239) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45969) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45699) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45429) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] ACT @ (4, 44620) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43811) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43541) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43271) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43001) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42462) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42731) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41922) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41113) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41382) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40843) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40573) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40303) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39764) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40033) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39494) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39224) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38954) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38415) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37875) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37605) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37066) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37335) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36796) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36526) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35717) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35447) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35177) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34907) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34368) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34637) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34098) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33828) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33558) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33019) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33288) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32749) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32479) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32209) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31670) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31400) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30860) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30590) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30321) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30051) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29511) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28972) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28162) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28432) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27892) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27623) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27353) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26813) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27083) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26543) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26274) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26004) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25464) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25734) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25194) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24925) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24655) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24115) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23576) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23306) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22766) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22496) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22227) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21417) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20878) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20068) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20338) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19798) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19529) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19259) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18719) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18989) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18449) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18180) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17910) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17370) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16831) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16021) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15482) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14672) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14942) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14402) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14133) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13863) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13323) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13593) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13053) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12784) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12514) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11974) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12244) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11704) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11435) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11165) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10625) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10086) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9276) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9546) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9006) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 8737) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8467) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7927) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7388) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6578) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6848) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6308) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6039) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5769) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5229) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5499) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4959) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4690) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4420) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3880) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3610) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3341) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2531) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2261) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1992) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1722) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 1182) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1452) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 912) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 643) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65369) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65099) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64830) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64560) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64020) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64290) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63750) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63481) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63211) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62671) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62401) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61862) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61592) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61322) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61052) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60513) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60782) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60243) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59973) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59164) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59433) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58894) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58624) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58354) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57815) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58084) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57545) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57275) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57005) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56466) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56735) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56196) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55926) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55656) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55117) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55386) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54847) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54577) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54307) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53768) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54037) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53498) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53228) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52958) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52419) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52688) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52149) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51879) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51609) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51070) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51339) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50800) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50530) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50260) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49721) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49990) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49451) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49181) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48911) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48372) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48641) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] ACT @ (0, 48102) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47832) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47562) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] ACT @ (0, 47023) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47292) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46483) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46213) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45674) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45943) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45404) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45134) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44864) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44325) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44594) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44055) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43785) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43515) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42976) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43245) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42706) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42436) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42166) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41627) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41896) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41357) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41087) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40817) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40278) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40547) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40008) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39738) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39468) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38929) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38659) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38389) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37580) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37849) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37310) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37040) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36770) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36231) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36500) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35961) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35691) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35421) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34882) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35151) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34612) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34342) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34072) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33533) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33802) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33263) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32993) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32184) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32453) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31914) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31644) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31374) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30835) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31104) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30295) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30025) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29486) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29755) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29216) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28946) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28676) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28137) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28406) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27867) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27327) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27597) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27057) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26788) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26518) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25978) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26248) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25708) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25439) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24629) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24899) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24359) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24090) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23820) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23280) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23550) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23010) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22741) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22471) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21931) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22201) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21661) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21392) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21122) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20582) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20852) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20312) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20043) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19233) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19503) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18963) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18694) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17884) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17614) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17345) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16535) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16805) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16265) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15996) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15726) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15186) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15456) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14916) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14647) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14377) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13837) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14107) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13567) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13298) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13028) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12488) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12758) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12218) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11949) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11139) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11409) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10869) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10600) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10330) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9790) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10060) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9520) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9251) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8981) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8441) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8711) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8171) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7902) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7632) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7092) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7362) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6822) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6553) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6283) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5743) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6013) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5473) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5204) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4934) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4394) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4664) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3855) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3045) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3315) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2775) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2506) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2236) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1696) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1966) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1426) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1157) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 887) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 347) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 617) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 77) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65344) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65074) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64534) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63995) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63185) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63455) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62915) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62646) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62376) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61836) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61297) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60487) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60757) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60217) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59948) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59678) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59138) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59408) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58868) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58329) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58598) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58059) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57789) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57519) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56980) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57249) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56710) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56440) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55631) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55900) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55361) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55091) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54821) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54282) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54551) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54012) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53742) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53472) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52933) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53202) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52663) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52393) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52123) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51584) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51853) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51314) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51044) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50774) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] ACT @ (0, 50235) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50504) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49965) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49695) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49425) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48886) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49155) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48616) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48346) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48076) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47537) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47267) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46997) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46727) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46188) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46457) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45648) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44839) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44569) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44299) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44029) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43490) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43759) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43220) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42950) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42680) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42141) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42410) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41871) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41601) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41331) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40792) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41061) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40252) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39443) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39712) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38903) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38633) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38094) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38363) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37554) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36745) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37014) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36475) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36205) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35935) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35396) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35665) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35126) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34856) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34586) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34047) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34316) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33777) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33507) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33237) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32698) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32967) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32158) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31888) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31349) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31618) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31079) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30809) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30539) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30000) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30269) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29730) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29460) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29190) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28651) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28920) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28381) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28111) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27841) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27302) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27571) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26762) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25953) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26222) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25683) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25413) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24604) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24873) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23794) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24064) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23524) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23255) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22985) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22445) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22715) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22175) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21906) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21636) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21096) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21366) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20826) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20557) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20287) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19747) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19477) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19208) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18398) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18668) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17859) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17589) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17049) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17319) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16779) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16510) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16240) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15700) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15970) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15430) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15161) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14891) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14351) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14621) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14081) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13812) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13542) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13002) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13272) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12732) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12463) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11653) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11923) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11383) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11114) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10844) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10304) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10574) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10034) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9765) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9495) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8955) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9225) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8685) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8416) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8146) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7606) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7876) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7336) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7067) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6797) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6257) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6527) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5987) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5718) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5448) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4908) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4638) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4369) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4099) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3559) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3829) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3289) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3020) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2210) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2480) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1940) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1671) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1401) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 861) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 591) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 322) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65048) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65318) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64509) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64239) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63699) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63969) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63429) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63160) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62350) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62620) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61811) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61541) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61001) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61271) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60731) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60462) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60192) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59652) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59922) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59382) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59113) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58843) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58303) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58573) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58033) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57764) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56954) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57224) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56415) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55605) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55875) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55335) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54796) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55065) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54526) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54256) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53447) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53716) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53177) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52907) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52637) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52367) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52098) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] ACT @ (4, 51558) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51828) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51288) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50749) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51018) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50479) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50209) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49939) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49400) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49669) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49130) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48860) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48590) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48051) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48320) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47511) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46702) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46971) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46432) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46162) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45892) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45353) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45622) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44813) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44004) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44273) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43734) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43464) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43194) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42655) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42924) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42385) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42115) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41845) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41306) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41575) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40766) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40496) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39957) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40226) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39417) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38608) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38877) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38338) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38068) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37798) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37259) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37528) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36989) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36719) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36449) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35910) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36179) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35640) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35370) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35100) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34561) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34830) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34021) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33212) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32942) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32672) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32402) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31863) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32132) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31593) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31323) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31053) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30514) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30783) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30244) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29974) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29704) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29165) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29434) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28895) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28625) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28355) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27816) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28085) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27546) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27276) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27006) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26467) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26736) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25927) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25118) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25387) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24848) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24578) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24308) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23769) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24038) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23499) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23229) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22959) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22420) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22689) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22150) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21880) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21610) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21071) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21340) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20801) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20261) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20531) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 92214 ns +Time Done: 185616 ns +Average Rate: 40 ns/request +-------------------------------- + + +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19991) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 75846088, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c9c1ad56c8b3ad56c7a5ad56c697ad, read data = 00000000000000000000000123456789 @ 185706000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 187850 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:15 ; elapsed = 00:07:55 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1513 ; free virtual = 10733 +## quit +INFO: xsimkernel Simulation Memory Usage: 154168 KB (Peak: 208428 KB), Simulation CPU Usage: 474050 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 23:11:22 2025... diff --git a/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_eight_lanes_bus_delay_0.log b/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_eight_lanes_bus_delay_0.log new file mode 100644 index 0000000..01adea4 --- /dev/null +++ b/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_eight_lanes_bus_delay_0.log @@ -0,0 +1,40328 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:264] +WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:251] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=6... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=6... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_module_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 57 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 512 +wb_sel_bits = 64 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 3 +WRITE_SLOT = 1 +ACTIVATE_SLOT = 0 +PRECHARGE_SLOT = 2 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 9 +CWL = 7 +PRECHARGE_TO_ACTIVATE_DELAY = 2 +ACTIVATE_TO_WRITE_DELAY = 2 +ACTIVATE_TO_READ_DELAY = 1 +ACTIVATE_TO_PRECHARGE_DELAY = 5 +ACTIVATE_TO_ACTIVATE_DELAY = 1 +READ_TO_WRITE_DELAY = 2 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 7 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U1R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [100756 ps] MRS -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U1R1.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R1.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R1.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R1.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R1.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R1.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R1.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R1.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] ZQC -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 49999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 49999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 49999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 49999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50719606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50725606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50731606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50737606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50743606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50749606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50755606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50761606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50767606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50773606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50779606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50785606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50791606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50797606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50803606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50809606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50815606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50845606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50851606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50857606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50863606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50869606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50875606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50881606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50887606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50893606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50899606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50905606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50911606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50917606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50923606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50929606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50935606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 50941606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50971636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50977636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50983636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50989636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 50995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 50995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 50995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 50995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50995636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51001636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51007636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51013636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51019636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51025636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51031636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51037636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51043636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51049636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51055636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51061636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51067636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51103714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51109714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51115714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51121714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51127714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51133714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51139714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51145714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51151714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51157714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51163714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51169714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51175714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51181714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51187714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51193714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51199714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 51986356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 51992356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 51997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 51997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 51997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 51997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 51998356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52004356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52010356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52016356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52022356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52028356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52034356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52040356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52046356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52052356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52058356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52064356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52070356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52076356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52082356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52112356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52118356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52124356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52130356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52136356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52142356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52148356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52154356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52160356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52166356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52172356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52178356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52184356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52190356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52196356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52202356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 52208356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 52999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 52999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 52999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 52999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53251606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53257606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53263606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53269606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53275606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53281606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53287606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53293606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53299606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53305606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53311606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53317606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53323606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53329606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53335606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53341606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53347606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53377606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53383606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53389606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53395606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53401606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53407606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53413606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53419606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53425606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53431606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53437606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53443606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53449606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53455606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53461606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53467606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 53473606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53503636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53509636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53515636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53521636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53527636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53533636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53539636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53545636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53551636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53557636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53563636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53569636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53575636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53581636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53587636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53593636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53599636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53635714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53641714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53647714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53653714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53659714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53665714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53671714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53677714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53683714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53689714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53695714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53701714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53707714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53713714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53719714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53725714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53731714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 53983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 53983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54518356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54524356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54530356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54536356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54542356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54548356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54554356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54560356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54566356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54572356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54578356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54584356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54590356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54596356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54602356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54608356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54614356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54644356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54650356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54656356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54662356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54668356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54674356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54680356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54686356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54692356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54698356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54704356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54710356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54716356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54722356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54728356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54734356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 54740356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 55123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55783606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55789606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55795606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55801606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55807606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55813606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55819606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55825606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55831606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55837606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55843606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55849606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55855606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55861606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55867606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55873606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55879606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55909606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55915606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55921606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55927606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55933606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55939606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55945606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55951606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55957606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55963606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55969606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55975606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55981606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55987606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55993606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 55994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 55994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 55999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 55999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 55999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 55999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 55999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 55999606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 56005606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56035636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56041636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56047636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56053636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56059636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56065636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56071636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56077636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56083636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56089636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56095636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56101636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56107636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56113636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56119636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56125636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56131636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56167714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56173714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56179714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56185714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56191714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56197714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56203714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56209714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56215714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56221714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56227714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56233714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56239714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56245714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56251714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56257714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 56263714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 56995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 56995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 56995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 56995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 56995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 56996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 56996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57050356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57056356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57062356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57068356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57074356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57080356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57086356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57092356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57098356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57104356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57110356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57116356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57122356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57128356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57134356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57140356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57146356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57176356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57182356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57188356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57194356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57200356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57206356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57212356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57218356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57224356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57230356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57236356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57242356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57248356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57254356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57260356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57266356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 57272356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 57655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 57997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 57997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 57997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 57997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 57998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 57998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 57998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58315606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58321606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58327606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58333606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58339606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58345606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58351606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58357606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58363606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58369606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58375606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58381606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58387606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58393606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58399606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58405606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58411606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58441606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58447606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58453606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58459606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58465606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58471606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58477606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58483606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58489606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58495606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58501606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58507606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58513606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58519606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58525606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58531606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 58537606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58567636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58573636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58579636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58585636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58591636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58597636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58603636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58609636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58615636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58621636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58627636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58633636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58639636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58645636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58651636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58657636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58663636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58699714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58705714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58711714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58717714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58723714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58729714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58735714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58741714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58747714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58753714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58759714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58765714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58771714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58777714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58783714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58789714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 58795714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 58994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 58994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 58994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 58999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 58999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 58999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 58999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59582356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59588356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59594356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59600356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59606356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59612356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59618356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59624356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59630356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59636356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59642356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59648356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59654356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59660356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59666356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59672356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59678356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59708356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59714356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59720356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59726356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59732356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59738356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59744356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59750356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59756356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59762356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59768356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59774356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59780356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59786356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59792356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59798356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 59804356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 59995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 59995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 59995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 59995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 59996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 59996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 59996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 59996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 60187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60847606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60853606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60859606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60865606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60871606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60877606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60883606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60889606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60895606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60901606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60907606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60913606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60919606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60925606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60931606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60937606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60943606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60973606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60979606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60985606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60991606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 60997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 60997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 60997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 60997606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 60998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 60998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 60998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 60998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61003606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61009606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61015606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61021606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61027606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61033606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61039606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61045606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61051606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61057606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61063606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 61069606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61099636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61105636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61111636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61117636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61123636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61129636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61135636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61141636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61147636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61153636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61159636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61165636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61171636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61177636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61183636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61189636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61195636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61231714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61237714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61243714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61249714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61255714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61261714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61267714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61273714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61279714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61285714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61291714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61297714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61303714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61309714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61315714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61321714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 61327714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61873012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61879012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61885012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61891012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 61994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 61994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 61994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 61994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 61999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 61999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 61999012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62005012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62011012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62017012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62023012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62114356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62120356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62126356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62131012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62132356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62137012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62138356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62143012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62144356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62149012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62150356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62156356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62162356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62168356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62174356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62180356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62186356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62192356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62198356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62204356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62210356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62240356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62246356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62252356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62257012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62258356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62263012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62264356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62269012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62270356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62275012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62276356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62282356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62288356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62294356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62300356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62306356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62312356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62318356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62324356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62330356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 62336356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62383012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62509012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62515012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62521012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62527012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62635012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62641012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62647012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62653012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 62719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62761012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62767012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62773012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62779012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62887012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62893012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62899012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62905012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 62971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 62971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 62972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 62972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 62972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 62972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 62972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63013012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63019012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63025012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63031012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63139012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63145012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63151012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63157012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63265012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63271012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63277012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63283012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63289012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63379606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63385606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63391606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63397012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63397606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63403012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63403606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63409012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63409606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63415012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63415606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63421606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63427606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63433606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63439606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63445606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63451606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63457606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63463606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63469606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63475606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63505606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63511606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63517606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63523012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63523606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63529012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63529606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63535012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63535606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63541012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63541606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63547606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63553606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63559606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63565606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63571606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63577606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63583606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63589606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63595606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 63601606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63631636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63637636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63643636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63649012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63649636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63655012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63655636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63661012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63661636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63667012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63667636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63673636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63679636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63685636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63691636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63697636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63703636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63709636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63715636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63721636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63727636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63763714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63769714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63775012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63775714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63781012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63781714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63787012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63787714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63793012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63793714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63799714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63805714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63811714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63817714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63823714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63829714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63835714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63841714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63847714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63853714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 63859714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63901012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63907012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63913012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63919012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 63985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 63985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 63986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 63986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 63986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 63986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 63986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64027012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64033012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64039012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64045012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64153012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64159012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64165012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64171012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64279012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64285012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64291012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64297012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64405012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64406416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64411012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64412416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64417012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64418416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64423012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64424416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64531012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64532416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64537012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64538416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64543012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64544416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64549012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64550416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64555012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64556416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64646356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64652356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64658356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64663012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64664356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64664416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64669012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64670356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64675012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64676356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64681012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64682356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64688356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64694356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64700356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64706356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64712356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64718356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64724356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64730356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64736356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64742356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64772356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64778356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64784356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64789012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64790356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64790416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64795012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64796356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64796416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64801012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64802356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64807012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64808356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64813012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64814356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64819012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64820356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64825012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64826356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64831012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64832356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64837012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64838356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64843012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64844356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64849012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64850356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64855012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64856356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64861012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64862356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64867012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 64868356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64897012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64903012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64909012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64915012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64916416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64921012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64922416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64927012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64933012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64939012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64945012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64951012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64957012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64963012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64969012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64975012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64981012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64987012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 64993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 64993012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 64994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 64994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 64994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 64994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 64994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 64994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65029012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65035012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65041012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65042416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65047012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65048416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65053012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65059012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65065012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65071012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65077012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65083012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65089012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65095012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65101012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65107012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65113012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65119012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65125012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65155012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65161012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65167012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65168416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65173012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65174416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65179012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65185012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65191012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65197012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65203012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65209012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65215012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65221012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65227012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65233012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65239012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65245012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 65251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65251012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65281012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65287012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65293012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65294416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65299012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65300416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65305012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65311012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65317012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65323012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65329012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65335012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65341012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65347012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65353012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65359012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65365012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65371012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65377012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65420416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65426416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65491012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65497012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65503012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65533012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65539012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65545012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65546416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65551012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65552416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65557012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65563012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65569012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65575012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65581012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65587012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65593012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65599012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65605012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65611012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65617012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65623012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65629012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65659012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65665012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65671012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65672416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65677012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65678416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65683012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65689012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65695012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65701012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65707012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65713012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65719012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65725012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65731012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65737012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65743012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65749012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65755012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65785012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65791012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65797012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65798416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65803012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65804416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65809012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65815012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65821012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65827012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65833012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65839012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65845012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65851012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65857012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65863012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65869012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65875012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65881012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65911012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65911606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65917012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65917606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65923012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65923606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65929012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65929606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65930416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65935012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65935606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65941012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65941606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65947012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65947606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65953012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65953606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65959012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65959606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65965012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65965606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65971012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65971606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65977012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65977606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65983012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65983606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65989012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65989606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 65995012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 65995606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 65996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 65996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 65996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 65996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 65996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 65996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66001012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66001606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66007012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66007606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66037012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66037606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66043012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66043606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66049012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66049606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66055012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66055606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66056416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66061012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66061606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66062416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66067012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66067606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66073012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66073606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66079012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66079606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66085012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66085606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66091012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66091606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66097012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66097606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66103012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66103606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66109012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66109606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66115012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66115606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66121012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66121606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66127012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66127606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66133012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 66133606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66163012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66163636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66169012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66169636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66175012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66175636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66181012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66181636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66182416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66187012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66187636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66188416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66193012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66193636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66199012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66199636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66205012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66205636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66211012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66211636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66217012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66217636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66223012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66223636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66229012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66229636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66235012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66235636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66241012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66241636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66247012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66247636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66253012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66253636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66259012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66259636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66295012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66295714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66301012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66301714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66307012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66307714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66308416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66313012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66313714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66314416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66319012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66319714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66325012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66325714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66331012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66331714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66337012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66337714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66343012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66343714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66349012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66349714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66355012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66355714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66361012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66361714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66367012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66367714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66373012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66373714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66379012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66379714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66385012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66385714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66391012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 66391714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66421012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66427012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66433012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66434416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66439012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66440416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66445012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66451012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66457012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66463012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66469012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66475012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66481012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66487012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66493012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66499012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66505012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66511012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66517012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66547012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66553012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66559012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66560416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66565012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66566416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66571012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66577012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66583012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66589012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66595012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66601012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66607012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66613012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66619012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66625012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66631012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66637012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66643012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66673012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66679012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66685012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66686416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66691012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66692416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66697012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66703012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66709012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66715012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66721012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66727012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66733012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66739012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66745012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66751012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66757012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66763012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66769012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66799012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66805012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66811012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66812416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66817012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66818416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66823012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66829012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66835012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66841012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66847012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66853012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66859012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66865012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66871012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66877012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66883012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66889012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66895012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66925012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66931012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66937012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66938416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66943012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66944416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66949012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66955012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66961012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66967012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66973012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66979012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66985012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66991012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 66997012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 66998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 66998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 66998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 66998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 66998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 66998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67003012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67009012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67015012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67021012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67051012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67057012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67063012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67064416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67069012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67070416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67075012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67081012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67087012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67093012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67099012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67105012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67111012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67117012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67123012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67129012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67135012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67141012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67147012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67177012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67178356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67178416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67183012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67184356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67184416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67189012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67190356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67190416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67195012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67196356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67196416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67201012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67202356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67207012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67208356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67213012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67214356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67219012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67220356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67225012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67226356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67231012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67232356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67237012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67238356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67243012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67244356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67249012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67250356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67255012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67256356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67261012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67262356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67267012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67268356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67273012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67274356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67303012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67304356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67304416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67309012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67310356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67310416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67315012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67316356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67316416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67321012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67322356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67322416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67327012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67328356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67328416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67333012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67334356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67334416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67339012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67340356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67340416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67345012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67346356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67346416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67351012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67352356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67352416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67357012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67358356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67358416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67363012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67364356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67364416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67369012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67370356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67370416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67375012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67376356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67376416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67381012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67382356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67382416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67387012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67388356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67388416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67393012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67394356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67394416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67399012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 67400356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67400416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67429012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67430416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67435012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67436416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67441012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67442416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67447012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67448416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67453012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67454416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67459012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67460416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67465012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67466416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67471012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67472416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67477012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67478416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67483012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67484416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67489012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67490416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67495012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67496416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67501012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67502416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67507012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67508416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67513012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67514416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67519012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67520416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67525012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67526416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67561012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67562416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67567012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67568416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67573012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67574416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67579012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67580416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67585012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67586416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67591012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67592416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67597012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67598416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67603012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67604416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67609012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67610416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67615012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67616416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67621012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67622416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67627012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67628416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67633012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67634416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67639012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67640416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67645012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67646416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67651012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67652416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67657012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67658416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67687012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67693012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67699012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67705012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67711012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67717012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67723012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67729012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67735012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67741012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67747012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67753012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67759012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67765012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67771012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67772416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67777012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67778416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 67783012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67784416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67904416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67910416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 67994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 67994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 67994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 67994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 67994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 67994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 67994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68030416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68036416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68156416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68162416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68282416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68288416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68408416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68414416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68443606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68449606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68455606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68461606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68467606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68473606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68479606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68485606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68491606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68497606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68503606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68509606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68515606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68521606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68527606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68533606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68534416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68539606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68540416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68569606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68575606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68581606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68587606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68593606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68599606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68605606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68611606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68617606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68623606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68629606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68635606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68641606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68647606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68653606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68659606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68660416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 68665606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68666416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68695636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68701636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68707636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68713636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68719636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68725636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68731636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68737636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68743636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68749636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68755636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68761636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68767636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68773636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68779636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68785636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68786416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68791636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68792416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68827714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68833714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68839714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68845714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68851714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68857714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68863714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68869714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68875714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68881714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68887714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68893714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68899714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68905714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68911714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68912416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68917714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68918416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 68923714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68924416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 68996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 68996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 68996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 68996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 68996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 68996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 68996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69038416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69044416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69050416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69170416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69176416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69296416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69302416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69422416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69428416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69548416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69554416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69674416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69680416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69710356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69716356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69722356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69728356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69734356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69740356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69746356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69752356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69758356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69764356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69770356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69776356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69782356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69788356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69794356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69800356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69800416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69806356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69806416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69836356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69842356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69848356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69854356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69860356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69866356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69872356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69878356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69884356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69890356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69896356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69902356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69908356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69914356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69920356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69926356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69926416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 69932356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69932416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 69962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 69968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 69974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 69980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 69986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 69992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 69998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 69998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 69998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 69998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 69998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 69998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 69998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 69998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70052416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 70058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 70058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 70058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 70058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 70058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 70058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 70058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 70058416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 101) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 102) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 104) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 105) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 106) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 107) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 109) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 110) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 111) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 112) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 114) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 116) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 119) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 120) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 121) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 122) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 124) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 126) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 129) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 132) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 134) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 135) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 136) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 139) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 140) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 141) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 144) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 146) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 148) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 149) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 151) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 153) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 154) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 155) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 156) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 158) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 159) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 161) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 163) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 164) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 166) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 167) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 168) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 169) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 171) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 172) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 174) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 176) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 179) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 181) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 183) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 184) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 186) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 187) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 188) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 189) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 191) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 196) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 197) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 199) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 100) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 101) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 102) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 104) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 105) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 106) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 107) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 108) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 109) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 110) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 111) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 112) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 113) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 114) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 115) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 116) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 117) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 118) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 119) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 120) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 121) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 122) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 123) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 124) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 125) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 126) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 127) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 128) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 129) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 130) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 131) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 132) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 133) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 134) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 135) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 136) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 137) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 138) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 139) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 140) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 141) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 142) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 143) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 144) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 145) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 146) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 147) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 148) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 149) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 150) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 151) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 152) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 153) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 154) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 155) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 156) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 157) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 158) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 159) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 160) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 161) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 162) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 163) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 164) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 165) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 166) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 167) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 168) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 169) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 170) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 171) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 172) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 173) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 174) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 175) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 176) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 177) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 178) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 179) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 180) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 181) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 182) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 183) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 184) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 185) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 186) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 187) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 188) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 189) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 190) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 191) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 192) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 193) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 195) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 196) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 197) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 198) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 199) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 952) -> [ 4500 ps] ACT @ (2, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (2, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] ACT @ (3, 0) -> +[ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> +[ 4500 ps] ACT @ (4, 0) -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] ACT @ (5, 0) -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> [ 4500 ps] ACT @ (6, 0) -> [ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> [ 4500 ps] ACT @ (7, 0) -> [ 1500 ps] WR @ (6, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 1) -> +[ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] ACT @ (1, 1) -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (3, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] ACT @ (4, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] ACT @ (5, 0) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 1500 ps] ACT @ (6, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 944) -> [ 1500 ps] ACT @ (7, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> +[ 1500 ps] ACT @ (0, 1) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 1) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 134256 ns +Time Done: 149052 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 149106000.0 ps +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 944) -> [ 4500 ps] ACT @ (2, 0) -> [ 1500 ps] WR @ (1, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] ACT @ (5, 0) -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> [ 4500 ps] ACT @ (6, 0) -> +[ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> +[ 4500 ps] ACT @ (7, 0) -> [ 1500 ps] WR @ (6, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 1) -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] ACT @ (1, 1) -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 944) -> [ 1500 ps] ACT @ (2, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> +[ 1500 ps] ACT @ (3, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 1500 ps] ACT @ (6, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 1500 ps] ACT @ (7, 0) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] ACT @ (0, 1) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 1) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 149052 ns +Time Done: 163866 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32767) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 163920000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 32767) -> [ 1500 ps] WR @ (0, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] ACT @ (2, 32767) -> [ 1500 ps] WR @ (1, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] ACT @ (3, 32767) -> +[ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> +[ 4500 ps] ACT @ (4, 32767) -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> [ 4500 ps] ACT @ (5, 32767) -> [ 1500 ps] WR @ (4, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 952) -> +[ 1500 ps] PRE @ (6) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> +[ 4500 ps] ACT @ (6, 32767) -> [ 1500 ps] WR @ (5, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (6, 32767) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> [ 4500 ps] ACT @ (7, 32767) -> +[ 1500 ps] WR @ (6, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> +[ 4500 ps] ACT @ (0, 32768) -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] ACT @ (1, 32768) -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32767) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 1500 ps] ACT @ (1, 32767) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 1500 ps] ACT @ (2, 32767) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 1500 ps] ACT @ (3, 32767) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] ACT @ (4, 32767) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] ACT @ (5, 32767) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (7, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 32767) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 1500 ps] ACT @ (0, 32768) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] ACT @ (1, 32768) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 163866 ns +Time Done: 178680 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2852) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] ACT @ (4, 2852) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 1773) -> [ 1500 ps] NOP -> +FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 178734000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 65150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 694) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64071) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61913) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62992) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60834) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56517) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57596) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54358) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55438) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53279) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51121) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52200) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48962) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 50042) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46804) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43566) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44646) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42487) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40329) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39250) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37091) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34933) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36012) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32774) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33854) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30616) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31695) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29537) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27378) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28458) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26299) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23062) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19824) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20903) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18745) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16586) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17666) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15507) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13349) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12270) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9032) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5794) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6874) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3636) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4715) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2557) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 398) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1478) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63776) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64855) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61617) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62697) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60538) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58380) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59459) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56221) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57301) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52984) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54063) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50825) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51905) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49746) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47588) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48667) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45429) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43271) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40033) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36796) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37875) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34637) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35717) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33558) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31400) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32479) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30321) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28162) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26004) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23845) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24925) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22766) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18449) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19529) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16291) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17370) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15212) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13053) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11974) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8737) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5499) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6578) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4420) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2261) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3341) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1182) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64560) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62401) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63481) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60243) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61322) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58084) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59164) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57005) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54847) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55926) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52688) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51609) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49451) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50530) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47292) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48372) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46213) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44055) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45134) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41896) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42976) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40817) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38659) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39738) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36500) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37580) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35421) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33263) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34342) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31104) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32184) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30025) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27867) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28946) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25708) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] ACT @ (0, 26788) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24629) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23550) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22471) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20312) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21392) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18154) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19233) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17075) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14916) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15996) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12758) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 13837) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9520) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10600) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7362) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8441) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6283) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5204) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1966) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3045) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 887) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64264) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65344) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58868) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59948) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56710) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57789) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54551) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55631) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53472) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51314) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52393) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49155) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50235) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48076) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45918) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46997) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43759) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41601) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38363) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36205) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32967) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34047) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31888) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29730) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30809) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27571) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28651) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25413) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22175) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23255) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16779) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17859) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14621) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15700) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13542) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11383) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12463) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9225) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10304) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 8146) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5987) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7067) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3829) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4908) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 591) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1671) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63969) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65048) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62890) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60731) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61811) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58573) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55335) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53177) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54256) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51018) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48860) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45622) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46702) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44543) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42385) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43464) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40226) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41306) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 36989) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38068) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34830) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35910) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31593) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32672) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29434) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30514) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28355) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26197) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27276) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24038) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22959) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21880) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18642) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19722) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16484) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17563) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15405) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13246) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14326) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11088) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12167) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10009) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7850) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8930) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5692) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6771) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4613) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2454) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3534) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 296) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1375) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62594) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63674) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60436) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61515) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59357) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57198) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58278) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55040) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53961) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51802) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52882) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49644) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50723) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47485) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46406) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44248) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45327) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42089) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43169) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41010) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38852) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39931) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36693) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35614) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33456) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34535) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31297) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32377) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30218) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28060) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25901) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26981) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24822) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23743) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22664) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] ACT @ (4, 20505) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19426) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17268) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18347) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15109) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12951) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14030) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11872) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9713) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10793) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7555) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8634) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6476) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4317) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5397) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2159) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3238) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1080) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64457) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62299) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59061) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56903) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57982) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55824) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53665) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51507) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 50428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48269) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49349) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46111) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43952) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42873) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40715) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41794) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38556) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39636) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37477) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35319) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36398) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34240) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32081) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29923) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31002) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27764) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28844) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26685) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24527) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25606) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22368) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23448) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21289) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19131) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20210) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16972) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18052) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15893) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13735) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14814) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11576) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12656) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9418) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10497) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 8339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7260) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4022) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5101) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2943) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 784) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1864) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65241) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63083) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60924) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62004) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58766) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55528) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53370) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54449) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52291) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50132) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47974) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49053) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44736) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45816) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42578) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40419) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41499) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39340) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38261) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35023) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33944) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31786) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32865) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29627) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30707) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28548) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26390) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27469) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24231) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25311) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20994) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22073) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18835) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19915) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17756) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15598) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16677) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13439) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14519) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12360) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10202) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11281) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8043) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5885) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6964) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2647) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3727) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 489) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1568) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64946) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62787) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63867) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60629) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61708) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59550) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57391) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58471) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55233) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56312) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51995) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49837) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50916) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48758) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46599) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44441) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45520) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 43362) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41203) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42283) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39045) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36886) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37966) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35807) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33649) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34728) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31490) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32570) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30411) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28253) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29332) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27174) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25015) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22857) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] ACT @ (4, 23936) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 20698) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19619) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17461) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18540) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15302) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16382) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14223) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12065) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13144) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9906) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8827) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6669) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7748) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4510) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5590) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2352) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3431) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1273) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64650) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63571) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61413) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59254) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60334) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53858) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51700) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52779) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50621) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48462) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49542) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46304) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47383) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45225) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43066) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44146) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40908) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41987) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39829) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37670) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35512) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36591) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33353) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34433) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32274) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30116) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29037) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26878) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24720) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25799) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23641) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21482) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19324) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 20403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17165) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18245) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16086) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13928) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15007) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11769) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12849) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10690) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 8532) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9611) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6373) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7453) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5294) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 977) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2057) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64355) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65434) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63276) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58959) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60038) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57880) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55721) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56801) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53563) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54642) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52484) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50325) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51405) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48167) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49246) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47088) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44929) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46009) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42771) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43850) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41692) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39533) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40613) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37375) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38454) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36296) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35217) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31979) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33058) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29820) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30900) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28741) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26583) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27662) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25504) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23345) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21187) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22266) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19028) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17949) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15791) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16870) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13632) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14712) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12553) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10395) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11474) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8236) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9316) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4999) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6078) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2840) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3920) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1761) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 682) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62980) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64060) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60822) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61901) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59743) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57584) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58664) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55426) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56505) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54347) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52188) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53268) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50030) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51109) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48951) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46792) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47872) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44634) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45713) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43555) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41396) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42476) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39238) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40317) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38159) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36000) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37080) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33842) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34921) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32763) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30604) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28446) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29525) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26287) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27367) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23050) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24129) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 20891) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21971) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19812) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] ACT @ (0, 17654) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18733) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15495) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16575) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14416) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12258) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13337) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10099) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11179) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9020) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6862) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7941) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5783) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3624) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1466) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2545) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64843) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 387) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63764) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61606) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62685) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59447) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60527) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57289) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58368) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56210) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54051) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51893) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52972) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 50814) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48655) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49735) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46497) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47576) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45418) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43259) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41101) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42180) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40022) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37863) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38943) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35705) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36784) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34626) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32467) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33547) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30309) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31388) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29230) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27071) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28151) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24913) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22754) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23834) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21675) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19517) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20596) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18438) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15200) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11962) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13042) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7646) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5487) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3329) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4408) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2250) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 91) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63469) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64548) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61310) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62390) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60231) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58073) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55914) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56994) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53756) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54835) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52677) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50518) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51598) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48360) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49439) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47281) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45122) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46202) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42964) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44043) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41885) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39726) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37568) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38647) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36489) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34330) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35410) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32172) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33251) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31093) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28934) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30014) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26776) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27855) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25697) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23538) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24618) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21380) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22459) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19221) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20301) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18142) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15984) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17063) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13825) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14905) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12746) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10588) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11667) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8429) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3033) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4113) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1954) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65332) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 875) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64253) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59936) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61015) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57777) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58857) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56698) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54540) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55619) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52381) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53461) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50223) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51302) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49144) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46985) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48065) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44827) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 43748) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41589) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42669) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39431) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40510) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38352) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37273) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34035) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35114) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32956) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30797) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31877) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28639) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29718) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27560) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25401) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23243) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24322) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22164) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20005) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] ACT @ (0, 21085) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18926) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17847) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 15688) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16768) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14609) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12451) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13530) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10292) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11372) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9213) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7055) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8134) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4896) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5976) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3817) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1659) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2738) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 580) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] ACT @ (7, 65036) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62879) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63957) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61799) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 62878) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> +[ 4500 ps] ACT @ (3, 61799) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60720) -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59641) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 60720) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58562) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 58561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57483) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57482) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 56403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55324) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54245) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 55324) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 54244) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53166) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 53165) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52087) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51007) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 52086) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 51007) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49928) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48849) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 49928) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 48848) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47770) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46690) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47769) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 46690) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45611) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 45611) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44532) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43453) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 44532) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 43452) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42374) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41294) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 42373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 41294) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 40215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38057) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38056) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36978) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35898) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 36977) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35898) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34819) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 34819) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33740) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32661) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 33740) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 32660) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31582) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30502) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 31581) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30502) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29423) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 29423) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28344) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27265) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 28344) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 27264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26186) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 26185) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 25106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24027) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 24027) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22948) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21869) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 22948) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 21868) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20790) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19710) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20789) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19710) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18631) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 18631) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17552) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16473) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 17552) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 16472) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15394) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14314) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 15393) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14314) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12156) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 13235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 12155) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11077) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9998) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 9997) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 8918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6760) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 7839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 6759) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5681) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 5680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4602) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 4601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 3522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1364) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 2443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 1363) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 285) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 284) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 63662) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 64741) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 61503) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 62583) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 60424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 58266) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 59345) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 56107) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 57187) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 55028) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 52870) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 53949) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 50711) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 51791) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 49632) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 47474) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 48553) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 45315) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 46395) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 43157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 44236) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 42078) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 39919) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 40999) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 37761) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38840) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 36682) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 34523) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35603) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 32365) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 33444) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 31286) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 29127) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30207) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 26969) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 28048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 25890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 23731) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 24811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 21573) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 22652) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 20494) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 18335) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 16177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 17256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 15098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 12939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14019) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 10781) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11860) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 8622) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 9702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 7543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 5385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 6464) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 3226) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 4306) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 2147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 65525) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 1068) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 63366) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 64446) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 62287) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 60129) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 61208) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57970) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 59050) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 56891) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 54733) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 55812) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 52574) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 53654) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 51495) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 49337) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 50416) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 48258) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 46099) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 43941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 45020) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 41782) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 42862) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39624) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 40703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] ACT @ (3, 38545) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 37466) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 36386) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] ACT @ (3, 34228) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 35307) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 33149) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 30990) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32070) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 28832) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 29911) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 27753) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 25594) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 26674) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 23436) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 24515) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 22357) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 21278) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 18040) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 19119) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 16961) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 14802) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 15882) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 12644) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 13723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 11565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 9406) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 10486) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 7248) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 8327) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 5089) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 6169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 4010) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 1852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 2931) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 65229) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 64150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 61992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 59833) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 60913) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 58754) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 56596) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57675) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 54437) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 55517) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 53358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 51200) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 52279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 49041) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 50121) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47962) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 45804) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 46883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 43645) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 44725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 42566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 40408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 41487) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38249) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39329) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 36091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 37170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 35012) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 32853) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 33933) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30695) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 31774) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 29616) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 27457) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 28537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 25299) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 26378) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 24220) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 22061) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 23141) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19903) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 18824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 16665) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 17745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14507) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 15586) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 13428) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11269) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 12349) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 9111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 10190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 8032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 5873) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 6953) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] ACT @ (5, 2852) -> [ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (1, 1773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 1500 ps] ACT @ (0, 1773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65150) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 694) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61913) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60834) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59754) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56517) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57596) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55438) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54358) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51121) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52200) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50042) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48962) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47883) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45725) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46804) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44646) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43566) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42487) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40329) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39250) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38170) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34933) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36012) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33854) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32774) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 30616) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31695) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27378) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28458) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26299) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25220) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21982) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23062) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20903) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19824) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18745) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16586) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17666) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15507) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14428) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13349) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11190) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12270) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9032) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5794) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6874) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4715) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3636) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2557) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 398) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1478) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64855) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63776) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 61617) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62697) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60538) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58380) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59459) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57301) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56221) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55142) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52984) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54063) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51905) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50825) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49746) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47588) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48667) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45429) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42192) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40033) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 36796) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37875) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35717) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34637) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33558) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31400) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32479) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30321) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29241) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] ACT @ (0, 27083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28162) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26004) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23845) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24925) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22766) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21687) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20608) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18449) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19529) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17370) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16291) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13053) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11974) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10895) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7657) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8737) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6578) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5499) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4420) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3341) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2261) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] ACT @ (0, 103) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64560) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62401) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61322) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60243) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 58084) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59164) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57005) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54847) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55926) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53768) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52688) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51609) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49451) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50530) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48372) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47292) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46213) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44055) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45134) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42976) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41896) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40817) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38659) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39738) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37580) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36500) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35421) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33263) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34342) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32184) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31104) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30025) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27867) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28946) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26788) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25708) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] ACT @ (0, 23550) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24629) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22471) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20312) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21392) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19233) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18154) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17075) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14916) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15996) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 13837) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12758) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9520) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10600) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8441) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7362) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6283) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4124) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5204) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3045) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1966) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 887) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64264) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65344) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63185) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62106) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61027) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58868) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59948) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57789) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56710) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 54551) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55631) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53472) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51314) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52393) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 50235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49155) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45918) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46997) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43759) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40522) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38363) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35126) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36205) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34047) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32967) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31888) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29730) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30809) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28651) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27571) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26492) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24334) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25413) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23255) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22175) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 20017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16779) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17859) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15700) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14621) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13542) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11383) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12463) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10304) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9225) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8146) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5987) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7067) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4908) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3829) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2750) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 591) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1671) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65048) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63969) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62890) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60731) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58573) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55335) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53177) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 51018) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47781) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48860) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45622) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42385) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43464) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41306) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40226) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39147) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36989) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38068) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35910) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34830) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33751) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31593) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32672) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30514) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29434) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26197) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27276) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24038) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22959) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20801) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21880) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19722) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18642) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 16484) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17563) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15405) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13246) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14326) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12167) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11088) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10009) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7850) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8930) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6771) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5692) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4613) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2454) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3534) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 1375) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 296) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62594) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63674) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61515) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60436) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59357) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57198) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58278) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55040) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53961) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51802) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52882) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50723) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49644) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] ACT @ (4, 47485) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48565) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46406) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44248) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45327) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43169) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42089) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41010) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38852) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39931) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36693) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35614) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33456) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34535) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32377) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31297) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30218) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28060) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26981) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25901) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24822) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22664) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23743) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21585) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20505) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19426) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17268) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18347) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16189) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15109) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 12951) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14030) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11872) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9713) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10793) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 8634) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7555) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6476) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] ACT @ (4, 4317) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5397) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3238) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2159) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1080) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64457) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62299) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59061) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56903) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53665) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51507) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48269) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49349) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47190) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46111) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] ACT @ (4, 43952) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45032) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42873) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40715) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41794) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39636) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38556) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37477) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35319) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36398) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34240) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33160) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32081) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29923) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31002) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28844) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27764) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26685) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24527) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25606) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23448) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22368) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21289) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19131) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20210) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18052) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16972) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15893) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13735) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14814) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12656) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11576) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 9418) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10497) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8339) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6180) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7260) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5101) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4022) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2943) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1864) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64162) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60924) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62004) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58766) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55528) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56608) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54449) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53370) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52291) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50132) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51212) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49053) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47974) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46895) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44736) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42578) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 40419) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41499) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39340) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37182) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38261) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35023) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33944) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31786) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32865) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30707) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29627) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28548) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26390) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27469) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25311) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24231) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23152) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20994) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22073) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19915) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18835) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17756) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15598) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16677) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14519) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13439) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12360) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10202) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11281) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 8043) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 5885) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6964) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2647) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3727) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1568) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 489) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64946) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62787) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63867) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61708) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60629) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59550) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57391) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58471) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56312) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55233) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54154) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51995) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50916) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49837) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48758) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46599) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45520) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44441) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43362) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41203) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42283) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39045) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 36886) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37966) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35807) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33649) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34728) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32570) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31490) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30411) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28253) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29332) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27174) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26094) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25015) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22857) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23936) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20698) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19619) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17461) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18540) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16382) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15302) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14223) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12065) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13144) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9906) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8827) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6669) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7748) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5590) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4510) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] ACT @ (0, 2352) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3431) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1273) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64650) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63571) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62492) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61413) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59254) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57096) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53858) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52779) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51700) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50621) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48462) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49542) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47383) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46304) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45225) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43066) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44146) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41987) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40908) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39829) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37670) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38750) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36591) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35512) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 33353) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34433) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32274) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30116) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 29037) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27957) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26878) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24720) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25799) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23641) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22561) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21482) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19324) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18245) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17165) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16086) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13928) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15007) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12849) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11769) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10690) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] ACT @ (0, 8532) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9611) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7453) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6373) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5294) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3136) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4215) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2057) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 977) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] ACT @ (0, 64355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65434) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63276) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61117) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62197) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60038) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58959) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57880) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55721) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54642) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53563) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52484) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50325) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51405) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49246) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48167) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47088) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44929) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46009) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43850) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42771) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41692) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39533) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40613) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38454) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37375) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36296) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34137) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35217) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33058) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31979) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 29820) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30900) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28741) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26583) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27662) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25504) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24424) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23345) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21187) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22266) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19028) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17949) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15791) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16870) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14712) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13632) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12553) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10395) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11474) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9316) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8236) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7157) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4999) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6078) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3920) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2840) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1761) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65139) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 682) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64060) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62980) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 60822) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61901) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59743) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57584) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58664) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56505) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55426) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54347) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52188) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53268) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51109) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50030) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48951) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46792) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47872) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45713) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44634) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43555) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41396) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42476) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40317) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39238) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38159) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36000) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34921) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33842) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 32763) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30604) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29525) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28446) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 26287) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27367) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23050) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24129) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21971) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20891) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19812) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17654) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18733) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16575) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15495) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14416) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12258) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13337) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11179) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10099) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9020) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6862) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5783) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4703) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3624) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1466) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2545) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 387) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64843) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63764) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61606) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62685) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60527) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59447) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 57289) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58368) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56210) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54051) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55131) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52972) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51893) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50814) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48655) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49735) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47576) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46497) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45418) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43259) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41101) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40022) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37863) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38943) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36784) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35705) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34626) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32467) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33547) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31388) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30309) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29230) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27071) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28151) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25992) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24913) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] ACT @ (4, 22754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23834) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21675) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19517) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20596) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18438) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17358) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16279) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14121) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15200) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13042) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11962) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8725) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7646) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6566) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5487) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3329) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2250) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1170) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 91) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63469) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64548) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62390) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61310) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60231) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58073) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59152) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56994) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55914) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 53756) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54835) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52677) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50518) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51598) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49439) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48360) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47281) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45122) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46202) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44043) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42964) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41885) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39726) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38647) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37568) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36489) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34330) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35410) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33251) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32172) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31093) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28934) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30014) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27855) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26776) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25697) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23538) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24618) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22459) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21380) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 19221) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20301) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17063) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15984) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 13825) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14905) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12746) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10588) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11667) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 8429) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5192) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3033) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65332) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 875) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64253) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63173) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62094) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59936) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61015) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58857) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57777) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56698) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54540) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55619) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53461) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52381) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 50223) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51302) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49144) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46985) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48065) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44827) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43748) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41589) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42669) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40510) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39431) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38352) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36193) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37273) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35114) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34035) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32956) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30797) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31877) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29718) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28639) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27560) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25401) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24322) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23243) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22164) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20005) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21085) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18926) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17847) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 15688) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14609) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12451) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13530) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11372) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10292) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9213) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7055) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8134) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5976) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4896) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3817) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1659) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2738) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 580) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] ACT @ (7, 65036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62879) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61799) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 62878) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] ACT @ (3, 61799) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59641) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 60720) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58562) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (7, 58561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57483) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57482) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 56403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55324) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54245) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 55324) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 54244) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53166) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (7, 53165) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52087) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51007) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 52086) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 51007) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49928) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48849) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 49928) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 48848) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47770) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46690) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47769) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 46690) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45611) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 45611) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44532) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43453) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 44532) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 43452) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42374) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41294) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 42373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 41294) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40215) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 40215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39136) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38057) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38056) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36978) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35898) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 36977) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35898) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34819) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 34819) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33740) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32661) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 33740) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 32660) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31582) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30502) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 31581) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30502) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29423) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 29423) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28344) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27265) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 28344) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 27264) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26186) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25106) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 26185) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 25106) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24027) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] ACT @ (3, 24027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22948) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21869) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 22948) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 21868) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20790) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19710) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20789) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19710) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18631) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 18631) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17552) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16473) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 17552) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 16472) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15394) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14314) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 15393) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 14314) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13235) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12156) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 13235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 12155) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11077) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (7, 11076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9998) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8918) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 9997) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 8918) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7839) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6760) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 7839) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 6759) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5681) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] ACT @ (7, 5680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4602) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3522) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 4601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 3522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2443) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1364) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 2443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 1363) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 285) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 63662) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 64741) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 62583) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 61503) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 60424) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 58266) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59345) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 57187) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 56107) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 55028) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 52870) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 53949) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 51791) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 50711) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 49632) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 47474) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 48553) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 46395) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 45315) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] ACT @ (3, 43157) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 44236) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 42078) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 39919) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 40999) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38840) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 37761) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 36682) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 34523) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35603) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 33444) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32365) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 31286) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 29127) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30207) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 28048) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 26969) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 25890) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 23731) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 24811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 22652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 21573) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 20494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 18335) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 17256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 16177) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 15098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 12939) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14019) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11860) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 10781) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] ACT @ (7, 8622) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 9702) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 7543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 5385) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 6464) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 4306) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 3226) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 2147) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 65525) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 1068) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 64446) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63366) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 62287) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 60129) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 61208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 59050) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57970) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 56891) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 54733) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 55812) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 53654) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 52574) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 51495) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 49337) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 50416) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 48258) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47178) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 46099) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 43941) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 45020) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 42862) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 41782) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] ACT @ (3, 39624) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 40703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 38545) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 36386) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 37466) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 35307) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 34228) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 33149) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 30990) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32070) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 29911) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 28832) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 27753) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 25594) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 26674) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 24515) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 23436) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 22357) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20198) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 21278) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 19119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 18040) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 16961) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 14802) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 15882) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 13723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 12644) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 11565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 9406) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 10486) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 8327) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 7248) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] ACT @ (7, 5089) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 6169) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 4010) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 1852) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 2931) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 773) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 65229) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 64150) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 61992) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63071) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 60913) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59833) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 58754) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 56596) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 57675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 55517) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 54437) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 53358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 51200) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 52279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 50121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 49041) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47962) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 45804) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 46883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 44725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 43645) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 42566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 40408) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 41487) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39329) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38249) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] ACT @ (3, 36091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 37170) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35012) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 32853) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 33933) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 31774) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30695) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 29616) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 27457) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 28537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 26378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 25299) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 24220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 22061) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 23141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 19903) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 18824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 16665) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 17745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 15586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14507) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 13428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11269) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 12349) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 10190) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 9111) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 8032) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 178680 ns +Time Done: 272202 ns +Average Rate: 40 ns/request +-------------------------------- + + +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 5873) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 6953) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 272304000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 274436 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:23 ; elapsed = 00:37:12 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1230 ; free virtual = 10212 +## quit +INFO: xsimkernel Simulation Memory Usage: 229388 KB (Peak: 287184 KB), Simulation CPU Usage: 2228490 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 21:37:20 2025... diff --git a/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_eight_lanes_bus_delay_1.log b/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_eight_lanes_bus_delay_1.log new file mode 100644 index 0000000..e88e307 --- /dev/null +++ b/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_eight_lanes_bus_delay_1.log @@ -0,0 +1,30121 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:264] +WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:251] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=6... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=6... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=50) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=100) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=150) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=200) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=250) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=300) +Compiling module xil_defaultlib.ddr3(FLY_BY_DELAY=350) +Compiling module xil_defaultlib.ddr3_module_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 57 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 512 +wb_sel_bits = 64 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 3 +WRITE_SLOT = 1 +ACTIVATE_SLOT = 0 +PRECHARGE_SLOT = 2 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 9 +CWL = 7 +PRECHARGE_TO_ACTIVATE_DELAY = 2 +ACTIVATE_TO_WRITE_DELAY = 2 +ACTIVATE_TO_READ_DELAY = 1 +ACTIVATE_TO_PRECHARGE_DELAY = 5 +ACTIVATE_TO_ACTIVATE_DELAY = 1 +READ_TO_WRITE_DELAY = 2 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 7 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 8 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U1R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U2R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U3R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U4R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U6R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U7R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U8R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +ddr3_dimm_micron_sim.ddr3_module.U9R1.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [100756 ps] MRS -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U1R1.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R1.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R1.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R1.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R1.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R1.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R1.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R1.reset at time 468200.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 468250.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 468300.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 468350.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 468400.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 468450.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 468500.0 ps WARNING: 200 us is required before RST_N goes inactive. +ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 468550.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1479956.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1480006.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1480056.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1480106.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1480156.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1480206.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1480256.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1480306.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1845956.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1846006.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1846056.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1846106.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1846156.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1846206.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1846256.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1846306.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] ZQC -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42373112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42373112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42373112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42373112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42373156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42373206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42373256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42379112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42379112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42379112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42379112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42379156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42379206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42379256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42385112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42385112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42385112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42385112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42385156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42385206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42385256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42391112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42391112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42391112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42391112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42391156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42391206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42391256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42397112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42397112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42397112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42397112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42397156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42397206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42397256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42403112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42403112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42403112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42403112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42403156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42403206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42403256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42409112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42409112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42409112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42409112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42409156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42409206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42409256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42415112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42415112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42415112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42415112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42415156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42415206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42415256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42421156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42421206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42421256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42427112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42427112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42427112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42427112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42427156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42427206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42427256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42433112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42433112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42433112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42433112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42433156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42433206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42433256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42439112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42439112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42439112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42439112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42439156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42439206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42439256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42445112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42445112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42445112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42445112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42445156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42445206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42445256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42451112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42451112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42451112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42451112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42451156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42451206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42451256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42457112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42457112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42457112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42457112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42457156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42457206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42457256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42463112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42463112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42463112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42463112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42463156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42463206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42463256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 42469112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42469112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42469112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42469112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42469156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42469206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42469256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42505112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42505112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42505112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42505156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42505206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42505256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42511112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42511112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42511112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42511156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42511206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42511256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42517112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42517112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42517112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42517156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42517206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42517256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42523112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42523112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42523112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42523156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42523206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42523256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42529112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42529112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42529112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42529156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42529206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42529256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42535112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42535112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42535112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42535156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42535206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42535256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42541112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42541112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42541112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42541156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42541206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42541256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42547112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42547112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42547112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42547156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42547206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42547256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42553112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42553112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42553112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42553156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42553206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42553256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42559112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42559112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42559112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42559156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42559206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42559256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42565112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42565112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42565112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42565156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42565206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42565256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42571112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42571112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42571112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42571156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42571206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42571256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42577112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42577112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42577112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42577156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42577206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42577256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42583112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42583112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42583112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42583156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42583206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42583256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42589112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42589112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42589112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42589156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42589206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42589256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42595112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42595112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42595112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42595156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42595206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42595256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42601112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42601112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42601112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42601156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42601206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42601256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42631112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42631112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42631112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42631156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42631206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42631256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42637112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42637112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42637112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42637156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42637206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42637256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42643112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42643112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42643112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42643156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42643206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42643256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42649112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42649112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42649112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42649156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42649206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42649256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42655112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42655112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42655112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42655156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42655206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42655256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42661112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42661112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42661112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42661156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42661206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42661256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42667112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42667112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42667112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42667156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42667206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42667256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42673112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42673112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42673112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42673156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42673206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42673256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42679112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42679112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42679112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42679156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42679206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42679256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42685112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42685112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42685112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42685156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42685206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42685256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42691112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42691112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42691112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42691156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42691206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42691256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42697112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42697112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42697112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42697156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42697206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42697256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42703112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42703112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42703112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42703156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42703206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42703256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42709112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42709112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42709112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42709156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42709206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42709256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42715112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42715112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42715112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42715156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42715206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42715256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42721112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42721112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42721112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42721156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42721206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42721256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42727112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42727112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42727112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42727156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42727206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42727256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42757112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42757112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42757112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42757156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42757206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42757256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42763112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42763112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42763112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42763156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42763206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42763256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42769112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42769112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42769112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42769156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42769206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42769256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42775112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42775112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42775112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42775156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42775206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42775256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42781112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42781112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42781112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42781156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42781206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42781256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42787112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42787112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42787112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42787156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42787206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42787256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42793112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42793112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42793112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42793156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42793206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42793256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42799112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42799112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42799112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42799156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42799206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42799256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42805112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42805112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42805112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42805156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42805206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42805256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42811112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42811112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42811112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42811156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42811206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42811256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42817112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42817112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42817112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42817156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42817206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42817256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42823112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42823112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42823112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42823156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42823206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42823256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42829112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42829112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42829112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42829156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42829206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42829256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42835112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42835112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42835112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42835156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42835206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42835256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42841112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42841112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42841112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42841156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42841206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42841256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42847112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42847112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42847112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42847156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42847206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42847256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42853112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42853112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42853112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42853156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42853206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42853256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42883112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42883112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42883112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42883156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42883206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42883256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42889112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42889112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42889112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42889156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42889206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42889256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42895112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42895112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42895112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42895156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42895206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42895256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42901112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42901112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42901112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42901156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42901206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42901256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42907112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42907112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42907112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42907156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42907206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42907256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42913112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42913112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42913112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42913156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42913206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42913256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42919112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42919112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42919112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42919156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42919206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42919256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42925112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42925112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42925112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42925156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42925206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42925256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42931112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42931112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42931112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42931156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42931206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42931256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42937112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42937112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42937112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42937156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42937206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42937256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42943112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42943112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42943112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42943156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42943206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42943256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42949112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42949112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42949112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42949156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42949206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42949256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42955112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42955112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42955112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42955156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42955206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42955256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42961112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42961112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42961112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42961156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42961206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42961256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42967112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42967112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42967112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42967156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42967206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42967256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42973112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42973112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42973112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42973156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42973206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42973256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 42979112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 42979112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 42979112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 42979156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 42979206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 42979256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43009112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43009112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43009112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43009156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43009206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43009256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43015112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43015112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43015112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43015156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43015206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43015256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43021112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43021112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43021112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43021156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43021206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43021256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43027112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43027112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43027112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43027156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43027206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43027256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43033112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43033112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43033112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43033156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43033206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43033256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43039112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43039112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43039112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43039156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43039206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43039256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43045112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43045112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43045112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43045156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43045206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43045256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43051112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43051112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43051112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43051156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43051206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43051256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43057112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43057112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43057112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43057156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43057206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43057256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43063112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43063112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43063112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43063156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43063206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43063256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43069112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43069112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43069112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43069156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43069206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43069256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43075112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43075112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43075112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43075156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43075206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43075256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43081112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43081112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43081112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43081156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43081206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43081256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43087112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43087112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43087112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43087156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43087206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43087256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43093112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43093112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43093112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43093156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43093206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43093256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43099112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43099112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43099112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43099156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43099206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43099256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43105112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43105112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43105112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43105156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43105206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43105256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43135112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43135112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43135112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43135156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43135206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43135256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43135706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43141112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43141112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43141112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43141156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43141206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43141256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43141706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43147112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43147112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43147112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43147156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43147206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43147256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43147706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43153112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43153112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43153112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43153156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43153206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43153256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43153706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43159112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43159112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43159112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43159156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43159206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43159256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43159706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43165112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43165112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43165112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43165156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43165206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43165256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43165706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43171112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43171112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43171112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43171156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43171206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43171256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43171706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43177112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43177112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43177112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43177156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43177206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43177256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43177706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43183112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43183112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43183112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43183156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43183206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43183256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43183706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43189112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43189112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43189112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43189156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43189206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43189256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43189706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43195112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43195112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43195112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43195156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43195206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43195256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43195706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43201112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43201112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43201112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43201156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43201206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43201256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43201706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43207112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43207112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43207112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43207156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43207206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43207256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43207706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43213112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43213112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43213112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43213156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43213206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43213256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43213706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43219112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43219112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43219112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43219156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43219206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43219256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43219706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43225112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43225112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43225112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43225156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43225206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43225256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43225706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43231112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43231112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43231112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43231156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43231206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43231256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43231706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43261112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43261112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43261112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43261156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43261206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43261256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43261706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43267112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43267112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43267112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43267156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43267206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43267256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43267706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43273112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43273112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43273112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43273156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43273206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43273256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43273706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43279112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43279112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43279112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43279156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43279206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43279256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43279706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43285112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43285112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43285112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43285156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43285206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43285256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43285706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43291112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43291112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43291112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43291156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43291206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43291256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43291706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43297112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43297112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43297112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43297156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43297206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43297256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43297706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43303112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43303112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43303112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43303156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43303206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43303256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43303706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43309112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43309112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43309112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43309156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43309206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43309256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43309706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43315112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43315112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43315112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43315156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43315206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43315256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43315706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43321112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43321112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43321112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43321156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43321206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43321256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43321706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43327112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43327112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43327112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43327156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43327206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43327256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43327706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43333112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43333112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43333112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43333156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43333206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43333256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43333706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43339112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43339112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43339112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43339156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43339206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43339256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43339706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43345112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43345112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43345112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43345156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43345206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43345256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43345706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43351112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43351112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43351112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43351156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43351206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43351256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43351706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43357112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43357112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43357112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43357156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43357206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43357256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 43357706.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43387112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43387112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43387112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43387156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43387206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43387256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43387736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43393112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43393112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43393112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43393156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43393206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43393256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43393736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43399112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43399112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43399112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43399156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43399206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43399256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43399736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43405112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43405112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43405112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43405156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43405206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43405256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43405736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43411112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43411112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43411112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43411156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43411206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43411256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43411736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43417112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43417112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43417112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43417156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43417206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43417256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43417736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43423112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43423112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43423112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43423156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43423206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43423256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43423736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43429112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43429112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43429112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43429156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43429206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43429256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43429736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43435112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43435112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43435112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43435156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43435206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43435256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43435736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43441112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43441112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43441112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43441156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43441206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43441256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43441736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43447112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43447112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43447112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43447156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43447206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43447256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43447736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43453112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43453112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43453112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43453156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43453206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43453256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43453736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43459112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43459112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43459112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43459156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43459206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43459256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43459736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43465112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43465112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43465112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43465156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43465206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43465256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43465736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43471112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43471112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43471112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43471156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43471206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43471256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43471736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43477112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43477112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43477112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43477156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43477206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43477256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43477736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43483112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43483112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43483112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43483156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43483206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43483256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43483736.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43519112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43519112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43519112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43519156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43519206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43519256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43519814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43525112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43525112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43525112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43525156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43525206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43525256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43525814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43531112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43531112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43531112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43531156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43531206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43531256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43531814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43537112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43537112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43537112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43537156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43537206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43537256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43537814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43543112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43543112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43543112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43543156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43543206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43543256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43543814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43549112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43549112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43549112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43549156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43549206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43549256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43549814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43555112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43555112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43555112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43555156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43555206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43555256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43555814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43561112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43561112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43561112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43561156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43561206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43561256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43561814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43567112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43567112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43567112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43567156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43567206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43567256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43567814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43573112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43573112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43573112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43573156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43573206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43573256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43573814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43579112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43579112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43579112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43579156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43579206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43579256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43579814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43585112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43585112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43585112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43585156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43585206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43585256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43585814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43591112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43591112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43591112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43591156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43591206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43591256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43591814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43597112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43597112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43597112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43597156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43597206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43597256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43597814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43603112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43603112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43603112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43603156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43603206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43603256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43603814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43609112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43609112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43609112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43609156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43609206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43609256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43609814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43615112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43615112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43615112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43615156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43615206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43615256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 43615814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43645112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43645112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43645112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43645156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43645206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43645256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43651112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43651112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43651112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43651156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43651206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43651256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43657112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43657112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43657112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43657156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43657206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43657256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43663112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43663112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43663112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43663156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43663206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43663256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43669112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43669112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43669112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43669156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43669206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43669256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43675112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43675112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43675112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43675156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43675206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43675256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43681112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43681112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43681112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43681156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43681206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43681256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43687112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43687112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43687112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43687156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43687206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43687256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43693112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43693112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43693112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43693156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43693206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43693256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43699112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43699112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43699112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43699156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43699206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43699256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43705112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43705112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43705112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43705156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43705206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43705256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43711112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43711112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43711112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43711156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43711206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43711256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43717112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43717112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43717112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43717156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43717206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43717256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43723112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43723112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43723112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43723156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43723206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43723256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43729112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43729112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43729112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43729156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43729206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43729256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43735112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43735112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43735112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43735156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43735206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43735256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43741112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43741112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43741112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43741156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43741206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43741256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43771112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43771112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43771112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43771156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43771206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43771256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43777112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43777112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43777112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43777156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43777206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43777256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43783112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43783112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43783112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43783156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43783206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43783256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43789112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43789112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43789112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43789156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43789206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43789256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43795112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43795112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43795112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43795156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43795206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43795256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43801112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43801112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43801112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43801156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43801206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43801256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43807112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43807112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43807112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43807156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43807206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43807256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43813112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43813112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43813112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43813156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43813206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43813256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43819112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43819112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43819112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43819156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43819206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43819256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43825112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43825112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43825112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43825156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43825206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43825256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43831112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43831112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43831112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43831156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43831206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43831256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43837112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43837112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43837112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43837156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43837206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43837256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43843112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43843112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43843112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43843156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43843206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43843256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43849112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43849112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43849112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43849156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43849206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43849256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43855112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43855112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43855112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43855156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43855206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43855256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43861112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43861112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43861112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43861156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43861206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43861256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43867112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43867112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43867112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43867156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43867206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43867256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43897112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43897112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43897112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43897156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43897206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43897256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43903112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43903112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43903112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43903156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43903206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43903256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43909112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43909112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43909112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43909156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43909206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43909256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43915112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43915112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43915112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43915156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43915206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43915256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43921112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43921112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43921112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43921156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43921206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43921256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43927112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43927112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43927112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43927156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43927206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43927256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43933112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43933112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43933112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43933156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43933206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43933256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43939112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43939112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43939112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43939156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43939206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43939256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43945112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43945112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43945112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43945156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43945206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43945256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43951112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43951112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43951112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43951156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43951206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43951256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43957112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43957112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43957112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43957156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43957206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43957256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43963112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43963112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43963112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43963156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43963206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43963256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43969112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43969112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43969112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43969156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43969206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43969256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43975112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43975112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43975112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43975156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43975206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43975256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43981112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43981112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43981112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43981156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43981206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43981256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43987112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43987112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43987112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43987156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43987206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43987256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 43993112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 43993112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 43993112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 43993156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 43993206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 43993256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44023112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44023112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44023112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44023156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44023206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44023256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44029112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44029112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44029112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44029156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44029206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44029256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44035112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44035112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44035112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44035156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44035206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44035256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44041112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44041112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44041112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44041156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44041206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44041256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44047112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44047112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44047112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44047156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44047206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44047256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44053112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44053112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44053112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44053156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44053206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44053256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44059112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44059112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44059112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44059156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44059206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44059256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44065112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44065112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44065112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44065156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44065206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44065256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44071112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44071112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44071112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44071156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44071206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44071256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44077112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44077112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44077112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44077156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44077206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44077256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44083112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44083112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44083112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44083156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44083206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44083256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44089112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44089112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44089112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44089156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44089206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44089256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44095112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44095112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44095112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44095156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44095206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44095256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44101112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44101112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44101112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44101156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44101206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44101256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44107112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44107112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44107112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44107156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44107206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44107256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44113112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44113112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44113112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44113156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44113206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44113256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44119112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44119112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44119112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44119156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44119206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44119256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44149112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44149112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44149112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44149156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44149206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44149256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44155112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44155112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44155112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44155156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44155206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44155256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44161112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44161112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44161112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44161156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44161206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44161256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44167112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44167112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44167112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44167156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44167206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44167256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44173112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44173112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44173112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44173156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44173206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44173256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44179112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44179112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44179112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44179156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44179206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44179256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44185112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44185112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44185112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44185156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44185206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44185256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44191112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44191112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44191112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44191156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44191206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44191256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44197112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44197112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44197112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44197156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44197206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44197256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44203112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44203112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44203112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44203156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44203206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44203256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44209112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44209112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44209112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44209156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44209206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44209256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44215112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44215112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44215112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44215156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44215206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44215256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44221112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44221112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44221112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44221156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44221206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44221256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44227112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44227112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44227112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44227156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44227206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44227256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44233112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44233112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44233112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44233156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44233206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44233256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44239112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44239112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44239112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44239156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44239206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44239256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44245112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44245112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44245112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44245156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44245206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44245256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44275112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44275112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44275112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44275156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44275206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44275256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44281112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44281112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44281112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44281156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44281206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44281256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44287112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44287112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44287112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44287156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44287206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44287256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44293112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44293112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44293112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44293156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44293206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44293256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44299112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44299112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44299112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44299156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44299206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44299256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44305112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44305112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44305112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44305156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44305206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44305256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44311112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44311112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44311112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44311156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44311206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44311256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44317112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44317112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44317112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44317156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44317206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44317256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44323112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44323112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44323112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44323156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44323206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44323256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44329112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44329112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44329112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44329156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44329206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44329256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44335112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44335112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44335112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44335156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44335206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44335256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44341112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44341112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44341112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44341156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44341206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44341256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44347112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44347112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44347112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44347156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44347206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44347256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44353112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44353112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44353112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44353156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44353206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44353256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44359112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44359112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44359112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44359156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44359206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44359256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44365112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44365112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44365112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44365156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44365206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44365256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44371112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44371112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44371112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44371156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44371206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44371256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44401112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44401112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44401112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44401156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44401206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44401256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44402456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44407112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44407112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44407112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44407156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44407206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44407256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44408456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44413112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44413112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44413112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44413156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44413206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44413256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44414456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44419112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44419112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44419112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44419156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44419206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44419256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44420456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44425112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44425112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44425112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44425156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44425206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44425256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44426456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44431112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44431112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44431112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44431156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44431206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44431256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44432456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44437112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44437112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44437112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44437156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44437206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44437256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44438456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44443112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44443112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44443112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44443156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44443206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44443256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44444456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44449112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44449112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44449112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44449156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44449206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44449256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44450456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44455112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44455112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44455112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44455156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44455206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44455256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44456456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44461112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44461112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44461112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44461156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44461206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44461256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44462456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44467112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44467112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44467112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44467156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44467206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44467256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44468456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44473112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44473112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44473112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44473156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44473206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44473256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44474456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44479112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44479112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44479112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44479156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44479206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44479256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44480456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44485112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44485112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44485112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44485156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44485206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44485256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44486456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44491112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44491112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44491112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44491156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44491206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44491256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44492456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44497112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44497112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44497112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44497156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44497206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44497256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44498456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44527112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44527112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44527112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44527156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44527206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44527256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44528456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44533112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44533112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44533112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44533156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44533206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44533256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44534456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44539112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44539112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44539112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44539156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44539206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44539256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44540456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44545112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44545112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44545112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44545156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44545206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44545256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44546456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44551112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44551112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44551112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44551156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44551206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44551256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44552456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44557112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44557112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44557112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44557156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44557206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44557256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44558456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44563112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44563112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44563112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44563156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44563206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44563256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44564456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44569112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44569112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44569112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44569156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44569206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44569256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44570456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44575112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44575112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44575112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44575156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44575206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44575256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44576456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44581112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44581112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44581112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44581156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44581206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44581256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44582456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44587112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44587112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44587112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44587156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44587206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44587256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44588456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44593112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44593112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44593112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44593156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44593206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44593256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44594456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44599112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44599112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44599112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44599156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44599206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44599256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44600456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44605112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44605112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44605112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44605156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44605206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44605256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44606456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44611112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44611112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44611112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44611156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44611206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44611256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44612456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44617112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44617112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44617112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44617156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44617206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44617256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44618456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44623112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44623112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44623112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44623156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44623206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44623256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 44624456.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44653112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44653112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44653112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44653156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44653206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44653256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44654516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44659112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44659112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44659112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44659156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44659206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44659256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44660516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44665112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44665112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44665112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44665156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44665206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44665256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44666516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44671112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44671112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44671112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44671156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44671206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44671256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44672516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44677112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44677112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44677112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44677156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44677206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44677256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44678516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44683112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44683112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44683112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44683156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44683206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44683256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44684516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44689112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44689112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44689112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44689156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44689206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44689256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44690516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44695112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44695112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44695112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44695156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44695206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44695256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44696516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44701112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44701112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44701112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44701156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44701206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44701256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44702516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44707112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44707112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44707112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44707156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44707206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44707256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44708516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44713112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44713112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44713112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44713156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44713206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44713256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44714516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44719112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44719112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44719112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44719156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44719206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44719256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44720516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44725112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44725112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44725112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44725156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44725206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44725256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44726516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44731112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44731112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44731112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44731156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44731206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44731256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44732516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44737112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44737112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44737112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44737156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44737206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44737256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44738516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44743112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44743112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44743112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44743156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44743206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44743256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44744516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44749112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44749112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44749112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44749156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44749206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44749256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44750516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44785112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44785112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44785112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44785156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44785206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44785256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44786516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44791112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44791112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44791112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44791156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44791206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44791256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44792516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44797112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44797112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44797112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44797156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44797206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44797256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44798516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44803112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44803112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44803112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44803156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44803206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44803256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44804516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44809112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44809112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44809112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44809156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44809206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44809256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44810516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44815112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44815112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44815112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44815156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44815206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44815256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44816516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44821112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44821112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44821112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44821156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44821206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44821256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44822516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44827112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44827112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44827112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44827156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44827206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44827256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44828516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44833112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44833112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44833112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44833156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44833206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44833256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44834516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44839112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44839112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44839112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44839156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44839206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44839256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44840516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44845112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44845112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44845112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44845156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44845206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44845256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44846516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44851112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44851112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44851112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44851156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44851206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44851256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44852516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44857112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44857112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44857112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44857156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44857206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44857256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44858516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44863112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44863112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44863112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44863156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44863206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44863256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44864516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44869112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44869112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44869112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44869156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44869206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44869256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44870516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44875112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44875112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44875112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44875156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44875206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44875256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44876516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44881112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44881112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44881112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44881156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44881206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44881256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44882516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44911112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44911112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44911112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44911156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44911206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44911256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44912516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44917112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44917112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44917112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44917156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44917206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44917256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44918516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44923112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44923112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44923112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44923156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44923206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44923256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44924516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44929112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44929112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44929112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44929156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44929206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44929256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44930516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44935112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44935112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44935112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44935156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44935206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44935256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44936516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44941112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44941112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44941112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44941156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44941206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44941256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44942516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44947112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44947112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44947112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44947156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44947206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44947256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44948516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44953112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44953112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44953112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44953156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44953206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44953256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44954516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44959112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44959112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44959112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44959156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44959206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44959256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44960516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44965112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44965112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44965112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44965156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44965206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44965256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44966516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44971112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44971112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44971112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44971156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44971206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44971256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44972516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44977112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44977112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44977112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44977156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44977206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44977256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44978516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44983112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44983112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44983112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44983156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44983206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44983256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44984516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44989112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44989112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44989112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44989156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44989206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44989256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44990516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 44995112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 44995112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 44995112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 44995156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 44995206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 44995256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 44996516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45001112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45001112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45001112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45001156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45001206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45001256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45002516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 45007112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45007112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45007112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45007156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45007206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45007256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45008516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45037112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45037112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45037156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45037206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45037256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45038516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45043112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45043112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45043156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45043206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45043256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45044516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45049112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45049112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45049156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45049206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45049256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45050516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45055112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45055112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45055156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45055206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45055256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45056516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45061112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45061112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45061156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45061206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45061256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45062516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45067112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45067112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45067156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45067206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45067256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45068516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45073112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45073112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45073156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45073206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45073256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45074516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45079112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45079112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45079156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45079206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45079256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45080516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45085112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45085112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45085156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45085206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45085256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45086516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45091112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45091112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45091156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45091206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45091256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45092516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45097112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45097112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45097156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45097206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45097256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45098516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45103112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45103112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45103156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45103206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45103256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45104516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45109112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45109112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45109156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45109206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45109256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45110516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45115112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45115112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45115156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45115206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45115256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45116516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45121112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45121112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45121156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45121206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45121256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45122516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45127112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45127112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45127156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45127206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45127256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45128516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45133112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45133112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45133156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45133206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45133256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45134516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45163112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45163112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45163156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45163206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45163256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45164516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45169112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45169112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45169156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45169206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45169256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45170516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45175112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45175112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45175156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45175206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45175256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45176516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45181112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45181112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45181156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45181206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45181256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45182516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45187112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45187112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45187156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45187206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45187256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45188516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45193112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45193112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45193156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45193206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45193256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45194516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45199112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45199112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45199156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45199206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45199256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45200516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45205112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45205112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45205156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45205206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45205256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45206516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45211112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45211112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45211156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45211206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45211256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45212516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45217112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45217112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45217156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45217206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45217256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45218516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45223112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45223112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45223156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45223206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45223256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45224516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45229112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45229112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45229156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45229206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45229256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45230516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45235112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45235112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45235156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45235206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45235256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45236516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45241112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45241112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45241156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45241206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45241256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45242516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45247112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45247112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45247156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45247206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45247256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45248516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45253112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45253112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45253156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45253206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45253256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45254516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45259112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45259112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45259156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45259206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45259256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45260516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45289112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45289112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45289156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45289206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45289256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45290516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45295112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45295112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45295156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45295206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45295256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45296516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45301112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45301112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45301156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45301206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45301256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45302516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45307112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45307112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45307156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45307206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45307256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45308516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45313112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45313112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45313156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45313206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45313256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45314516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45319112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45319112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45319156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45319206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45319256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45320516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45325112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45325112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45325156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45325206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45325256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45326516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45331112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45331112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45331156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45331206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45331256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45332516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45337112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45337112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45337156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45337206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45337256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45338516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45343112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45343112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45343156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45343206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45343256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45344516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45349112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45349112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45349156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45349206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45349256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45350516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45355112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45355112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45355156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45355206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45355256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45356516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45361112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45361112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45361156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45361206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45361256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45362516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45367112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45367112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45367156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45367206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45367256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45368516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45373112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45373112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45373156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45373206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45373256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45374516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45379112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45379112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45379156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45379206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45379256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45380516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45385112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45385112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45385156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45385206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45385256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45386516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45415112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45415112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45415156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45415206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45415256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45416516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45421156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45421206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45421256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45422516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45427112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45427112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45427156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45427206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45427256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45428516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45433112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45433112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45433156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45433206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45433256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45434516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45439112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45439112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45439156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45439206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45439256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45440516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45445112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45445112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45445156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45445206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45445256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45446516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45451112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45451112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45451156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45451206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45451256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45452516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45457112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45457112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45457156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45457206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45457256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45458516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45463112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45463112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45463156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45463206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45463256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45464516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45469112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45469112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45469156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45469206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45469256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45470516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45475112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45475112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45475156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45475206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45475256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45476516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45481112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45481112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45481156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45481206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45481256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45482516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45487112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45487112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45487156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45487206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45487256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45488516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45493112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45493112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45493156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45493206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45493256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45494516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45499112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45499112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45499156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45499206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45499256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45500516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45505112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45505112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45505156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45505206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45505256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45506516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45511112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45511112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45511156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45511206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45511256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45512516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45541112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45541112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45541156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45541206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45541256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45542516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45547112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45547112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45547156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45547206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45547256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45548516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45553112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45553112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45553156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45553206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45553256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45554516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45559112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45559112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45559156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45559206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45559256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45560516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45565112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45565112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45565156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45565206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45565256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45566516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45571112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45571112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45571156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45571206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45571256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45572516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45577112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45577112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45577156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45577206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45577256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45578516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45583112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45583112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45583156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45583206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45583256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45584516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45589112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45589112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45589156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45589206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45589256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45590516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45595112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45595112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45595156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45595206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45595256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45596516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45601112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45601112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45601156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45601206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45601256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45602516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45607112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45607112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45607156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45607206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45607256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45608516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45613112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45613112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45613156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45613206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45613256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45614516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45619112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45619112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45619156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45619206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45619256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45620516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45625112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45625112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45625156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45625206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45625256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45626516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45631112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45631112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45631156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45631206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45631256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45632516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45637112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45637112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45637156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45637206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45637256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45638516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45667112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45667112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45667156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45667206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45667256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45668516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45673112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45673112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45673156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45673206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45673256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45674516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45679112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45679112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45679156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45679206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45679256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45680516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45685112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45685112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45685156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45685206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45685256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45686516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45691112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45691112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45691156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45691206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45691256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45692516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45697112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45697112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45697156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45697206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45697256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45698516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45703112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45703112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45703156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45703206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45703256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45704516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45709112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45709112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45709156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45709206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45709256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45710516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45715112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45715112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45715156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45715206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45715256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45716516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45721112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45721112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45721156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45721206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45721256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45722516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45727112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45727112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45727156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45727206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45727256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45728516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45733112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45733112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45733156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45733206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45733256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45734516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45739112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45739112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45739156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45739206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45739256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45740516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45745112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45745112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45745156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45745206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45745256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45746516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45751112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45751112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45751156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45751206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45751256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45752516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45757112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45757112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45757156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45757206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45757256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45758516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45763112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45763112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45763156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45763206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45763256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45764516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45793112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45793112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45793156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45793206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45793256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45793756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45794516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45799112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45799112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45799156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45799206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45799256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45799756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45800516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45805112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45805112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45805156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45805206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45805256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45805756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45806516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45811112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45811112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45811156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45811206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45811256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45811756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45812516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45817112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45817112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45817156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45817206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45817256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45817756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45818516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45823112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45823112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45823156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45823206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45823256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45823756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45824516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45829112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45829112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45829156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45829206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45829256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45829756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45830516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45835112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45835112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45835156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45835206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45835256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45835756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45836516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45841112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45841112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45841156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45841206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45841256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45841756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45842516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45847112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45847112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45847156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45847206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45847256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45847756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45848516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45853112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45853112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45853156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45853206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45853256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45853756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45854516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45859112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45859112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45859156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45859206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45859256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45859756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45860516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45865112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45865112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45865156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45865206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45865256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45865756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45866516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45871112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45871112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45871156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45871206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45871256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45871756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45872516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45877112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45877112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45877156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45877206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45877256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45877756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45878516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45883112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45883112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45883156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45883206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45883256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45883756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45884516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45889112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45889112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45889156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45889206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45889256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45889756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45890516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45919112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45919112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45919156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45919206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45919256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45919756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45920516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45925112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45925112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45925156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45925206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45925256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45925756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45926516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45931112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45931112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45931156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45931206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45931256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45931756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45932516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45937112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45937112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45937156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45937206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45937256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45937756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45938516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45943112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45943112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45943156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45943206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45943256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45943756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45944516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45949112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45949112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45949156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45949206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45949256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45949756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45950516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45955112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45955112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45955156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45955206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45955256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45955756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45956516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45961112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45961112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45961156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45961206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45961256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45961756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45962516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45967112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45967112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45967156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45967206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45967256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45967756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45968516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45973112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45973112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45973156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45973206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45973256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45973756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45974516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45979112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45979112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45979156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45979206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45979256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45979756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45980516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45985112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45985112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45985156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45985206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45985256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45985756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45986516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45991112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45991112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45991156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45991206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45991256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45991756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45992516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 45997112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 45997112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 45997156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 45997206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 45997256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 45997756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 45998516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46003112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46003112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46003156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46003206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46003256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46003756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46004516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46009112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46009112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46009156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46009206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46009256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46009756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46010516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46015112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46015112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46015156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46015206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46015256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46015756.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46016516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46045112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46045112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46045156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46045206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46045256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46045814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46046516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46051112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46051112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46051156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46051206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46051256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46051814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46052516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46057112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46057112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46057156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46057206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46057256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46057814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46058516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46063112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46063112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46063156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46063206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46063256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46063814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46064516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46069112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46069112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46069156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46069206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46069256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46069814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46070516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46075112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46075112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46075156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46075206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46075256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46075814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46076516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46081112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46081112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46081156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46081206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46081256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46081814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46082516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46087112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46087112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46087156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46087206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46087256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46087814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46088516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46093112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46093112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46093156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46093206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46093256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46093814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46094516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46099112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46099112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46099156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46099206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46099256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46099814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46100516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46105112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46105112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46105156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46105206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46105256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46105814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46106516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46111112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46111112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46111156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46111206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46111256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46111814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46112516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46117112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46117112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46117156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46117206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46117256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46117814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46118516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46123112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46123112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46123156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46123206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46123256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46123814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46124516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46129112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46129112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46129156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46129206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46129256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46129814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46130516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46135112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46135112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46135156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46135206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46135256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46135814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46136516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46141112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46141112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46141156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46141206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46141256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46141814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46142516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46177112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46177112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46177156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46177206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46177256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46177892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46178516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46183112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46183112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46183156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46183206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46183256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46183892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46184516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46189112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46189112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46189156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46189206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46189256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46189892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46190516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46195112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46195112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46195156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46195206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46195256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46195892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46196516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46201112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46201112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46201156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46201206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46201256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46201892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46202516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46207112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46207112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46207156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46207206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46207256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46207892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46208516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46213112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46213112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46213156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46213206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46213256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46213892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46214516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46219112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46219112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46219156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46219206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46219256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46219892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46220516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46225112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46225112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46225156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46225206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46225256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46225892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46226516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46231112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46231112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46231156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46231206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46231256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46231892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46232516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46237112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46237112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46237156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46237206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46237256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46237892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46238516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46243112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46243112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46243156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46243206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46243256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46243892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46244516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46249112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46249112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46249156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46249206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46249256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46249892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46250516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46255112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46255112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46255156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46255206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46255256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46255892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46256516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46261112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46261112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46261156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46261206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46261256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46261892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46262516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46267112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46267112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46267156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46267206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46267256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46267892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46268516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46273112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46273112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46273156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46273206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46273256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 46273892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46274516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46303112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46303112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46303156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46303206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46303256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46304516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46309112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46309112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46309156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46309206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46309256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46310516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46315112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46315112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46315156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46315206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46315256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46316516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46321112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46321112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46321156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46321206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46321256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46322516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46327112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46327112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46327156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46327206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46327256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46328516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46333112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46333112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46333156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46333206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46333256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46334516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46339112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46339112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46339156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46339206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46339256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46340516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46345112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46345112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46345156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46345206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46345256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46346516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46351112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46351112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46351156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46351206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46351256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46352516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46357112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46357112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46357156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46357206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46357256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46358516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46363112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46363112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46363156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46363206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46363256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46364516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46369112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46369112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46369156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46369206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46369256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46370516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46375112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46375112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46375156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46375206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46375256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46376516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46381112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46381112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46381156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46381206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46381256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46382516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46387112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46387112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46387156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46387206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46387256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46388516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46393112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46393112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46393156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46393206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46393256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46394516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46399112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46399112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46399156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46399206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46399256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46400516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46429112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46429112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46429156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46429206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46429256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46430516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46435112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46435112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46435156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46435206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46435256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46436516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46441112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46441112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46441156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46441206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46441256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46442516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46447112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46447112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46447156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46447206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46447256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46448516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46453112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46453112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46453156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46453206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46453256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46454516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46459112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46459112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46459156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46459206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46459256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46460516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46465112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46465112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46465156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46465206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46465256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46466516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46471112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46471112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46471156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46471206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46471256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46472516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46477112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46477112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46477156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46477206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46477256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46478516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46483112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46483112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46483156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46483206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46483256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46484516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46489112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46489112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46489156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46489206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46489256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46490516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46495112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46495112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46495156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46495206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46495256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46496516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46501112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46501112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46501156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46501206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46501256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46502516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46507112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46507112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46507156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46507206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46507256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46508516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46513112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46513112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46513156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46513206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46513256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46514516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46519112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46519112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46519156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46519206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46519256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46520516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46525112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46525112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46525156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46525206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46525256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46526516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46555112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46555112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46555156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46555206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46555256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46556516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46561112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46561112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46561156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46561206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46561256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46562516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46567112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46567112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46567156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46567206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46567256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46568516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46573112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46573112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46573156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46573206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46573256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46574516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46579112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46579112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46579156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46579206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46579256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46580516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46585112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46585112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46585156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46585206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46585256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46586516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46591112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46591112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46591156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46591206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46591256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46592516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46597112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46597112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46597156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46597206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46597256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46598516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46603112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46603112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46603156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46603206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46603256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46604516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46609112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46609112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46609156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46609206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46609256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46610516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46615112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46615112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46615156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46615206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46615256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46616516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46621112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46621112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46621156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46621206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46621256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46622516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46627112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46627112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46627156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46627206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46627256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46628516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46633112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46633112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46633156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46633206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46633256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46634516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46639112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46639112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46639156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46639206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46639256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46640516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46645112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46645112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46645156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46645206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46645256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46646516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46651112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46651112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46651156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46651206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46651256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46652516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46681112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46681112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46681156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46681206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46681256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46682516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46687112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46687112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46687156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46687206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46687256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46688516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46693112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46693112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46693156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46693206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46693256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46694516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46699112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46699112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46699156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46699206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46699256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46700516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46705112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46705112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46705156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46705206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46705256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46706516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46711112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46711112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46711156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46711206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46711256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46712516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46717112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46717112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46717156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46717206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46717256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46718516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46723112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46723112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46723156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46723206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46723256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46724516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46729112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46729112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46729156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46729206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46729256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46730516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46735112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46735112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46735156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46735206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46735256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46736516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46741112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46741112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46741156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46741206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46741256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46742516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46747112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46747112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46747156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46747206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46747256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46748516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46753112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46753112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46753156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46753206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46753256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46754516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46759112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46759112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46759156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46759206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46759256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46760516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46765112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46765112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46765156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46765206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46765256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46766516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46771112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46771112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46771156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46771206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46771256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46772516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46777112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46777112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46777156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46777206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46777256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46778516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46807112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46807112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46807156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46807206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46807256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46808516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46813112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46813112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46813156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46813206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46813256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46814516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46819112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46819112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46819156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46819206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46819256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46820516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46825112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46825112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46825156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46825206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46825256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46826516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46831112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46831112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46831156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46831206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46831256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46832516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46837112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46837112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46837156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46837206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46837256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46838516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46843112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46843112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46843156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46843206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46843256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46844516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46849112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46849112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46849156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46849206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46849256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46850516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46855112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46855112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46855156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46855206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46855256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46856516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46861112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46861112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46861156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46861206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46861256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46862516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46867112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46867112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46867156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46867206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46867256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46868516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46873112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46873112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46873156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46873206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46873256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46874516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46879112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46879112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46879156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46879206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46879256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46880516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46885112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46885112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46885156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46885206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46885256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46886516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46891112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46891112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46891156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46891206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46891256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46892516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46897112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46897112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46897156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46897206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46897256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46898516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46903112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46903112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46903156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46903206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46903256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46904516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46933112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46933112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46933156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46933206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46933256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46934506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46934516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46939112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46939112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46939156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46939206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46939256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46940506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46940516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46945112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46945112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46945156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46945206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46945256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46946506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46946516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46951112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46951112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46951156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46951206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46951256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46952506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46952516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46957112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46957112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46957156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46957206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46957256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46958506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46958516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46963112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46963112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46963156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46963206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46963256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46964506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46964516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46969112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46969112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46969156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46969206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46969256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46970506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46970516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46975112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46975112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46975156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46975206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46975256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46976506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46976516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46981112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46981112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46981156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46981206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46981256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46982506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46982516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46987112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46987112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46987156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46987206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46987256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46988506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46988516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46993112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46993112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46993156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46993206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46993256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 46994506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 46994516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 46999112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 46999112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 46999156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 46999206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 46999256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47000506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47000516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47005112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47005112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47005156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47005206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47005256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47006506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47006516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47011112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47011112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47011156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47011206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47011256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47012506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47012516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47017112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47017112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47017156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47017206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47017256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47018506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47018516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47023112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47023112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47023156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47023206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47023256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47024506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47024516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47029112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47029112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47029156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47029206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47029256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47030506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47030516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47059112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47059112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47059156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47059206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47059256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47060506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47060516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47065112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47065112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47065156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47065206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47065256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47066506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47066516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47071112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47071112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47071156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47071206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47071256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47072506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47072516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47077112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47077112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47077156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47077206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47077256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47078506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47078516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47083112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47083112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47083156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47083206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47083256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47084506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47084516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47089112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47089112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47089156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47089206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47089256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47090506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47090516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47095112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47095112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47095156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47095206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47095256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47096506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47096516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47101112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47101112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47101156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47101206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47101256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47102506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47102516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47107112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47107112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47107156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47107206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47107256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47108506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47108516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47113112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47113112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47113156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47113206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47113256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47114506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47114516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47119112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47119112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47119156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47119206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47119256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47120506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47120516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47125112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47125112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47125156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47125206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47125256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47126506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47126516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47131112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47131112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47131156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47131206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47131256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47132506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47132516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47137112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47137112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47137156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47137206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47137256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47138506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47138516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47143112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47143112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47143156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47143206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47143256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47144506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47144516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47149112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47149112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47149156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47149206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47149256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47150506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47150516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47155112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47155112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47155156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47155206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47155256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 47156506.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47156516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47185112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47185112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47185156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47185206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47185256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47186516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47186516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47191112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47191112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47191156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47191206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47191256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47192516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47192516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47197112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47197112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47197156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47197206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47197256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47198516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47198516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47203112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47203112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47203156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47203206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47203256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47204516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47204516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47209112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47209112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47209156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47209206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47209256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47210516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47210516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47215112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47215112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47215156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47215206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47215256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47216516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47216516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47221112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47221112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47221156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47221206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47221256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47222516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47222516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47227112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47227112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47227156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47227206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47227256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47228516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47228516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47233112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47233112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47233156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47233206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47233256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47234516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47234516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47239112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47239112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47239156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47239206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47239256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47240516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47240516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47245112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47245112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47245156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47245206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47245256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47246516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47246516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47251112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47251112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47251156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47251206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47251256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47252516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47252516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47257112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47257112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47257156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47257206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47257256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47258516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47258516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47263112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47263112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47263156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47263206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47263256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47264516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47264516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47269112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47269112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47269156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47269206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47269256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47270516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47270516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47275112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47275112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47275156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47275206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47275256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47276516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47276516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47281112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47281112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47281156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47281206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47281256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47282516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47282516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47317112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47317112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47317156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47317206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47317256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47318516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47318516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47323112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47323112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47323156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47323206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47323256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47324516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47324516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47329112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47329112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47329156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47329206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47329256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47330516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47330516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47335112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47335112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47335156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47335206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47335256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47336516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47336516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47341112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47341112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47341156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47341206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47341256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47342516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47342516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47347112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47347112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47347156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47347206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47347256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47348516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47348516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47353112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47353112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47353156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47353206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47353256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47354516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47354516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47359112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47359112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47359156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47359206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47359256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47360516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47360516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47365112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47365112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47365156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47365206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47365256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47366516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47366516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47371112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47371112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47371156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47371206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47371256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47372516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47372516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47377112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47377112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47377156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47377206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47377256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47378516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47378516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47383112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47383112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47383156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47383206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47383256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47384516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47384516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47389112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47389112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47389156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47389206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47389256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47390516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47390516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47395112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47395112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47395156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47395206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47395256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47396516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47396516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47401112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47401112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47401156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47401206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47401256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47402516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47402516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47407112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47407112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47407156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47407206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47407256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47408516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47408516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47413112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47413112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47413156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47413206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47413256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47414516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47414516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47443112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47443112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47443156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47443206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47443256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47444516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47444516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47449112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47449112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47449156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47449206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47449256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47450516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47450516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47455112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47455112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47455156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47455206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47455256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47456516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47456516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47461112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47461112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47461156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47461206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47461256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47462516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47462516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47467112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47467112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47467156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47467206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47467256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47468516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47468516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47473112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47473112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47473156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47473206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47473256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47474516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47474516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47479112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47479112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47479156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47479206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47479256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47480516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47480516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47485112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47485112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47485156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47485206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47485256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47486516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47486516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47491112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47491112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47491156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47491206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47491256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47492516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47492516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47497112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47497112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47497156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47497206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47497256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47498516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47498516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47503112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47503112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47503156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47503206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47503256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47504516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47504516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47509112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47509112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47509156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47509206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47509256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47510516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47510516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47515112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47515112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47515156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47515206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47515256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47516516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47516516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47521112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47521112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47521156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47521206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47521256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47522516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47522516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47527112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47527112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47527156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47527206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47527256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47528516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47528516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47533112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47533112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47533156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47533206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47533256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47534516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47534516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47539112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47539112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47539156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47539206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47539256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47540516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47540516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47569112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47569156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47569190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47569206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47569256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47570516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47570516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47575112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47575156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47575190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47575206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47575256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47576516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47576516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47581112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47581156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47581190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47581206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47581256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47582516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47582516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47587112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47587156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47587190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47587206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47587256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47588516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47588516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47593112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47593156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47593190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47593206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47593256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47594516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47594516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47599112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47599156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47599190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47599206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47599256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47600516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47600516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47605112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47605156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47605190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47605206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47605256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47606516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47606516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47611112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47611156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47611190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47611206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47611256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47612516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47612516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47617112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47617156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47617190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47617206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47617256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47618516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47618516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47623112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47623156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47623190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47623206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47623256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47624516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47624516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47629112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47629156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47629190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47629206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47629256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47630516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47630516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47635112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47635156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47635190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47635206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47635256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47636516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47636516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47641112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47641156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47641190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47641206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47641256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47642516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47642516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47647112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47647156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47647190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47647206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47647256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47648516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47648516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47653112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47653156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47653190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47653206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47653256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47654516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47654516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47659112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47659156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47659190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47659206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47659256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47660516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47660516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47665112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47665156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 47665190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47665206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47665256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47666516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47666516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47695112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47695156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47695206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47695256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47696516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47696516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47701112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47701156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47701206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47701256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47702516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47702516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47707112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47707156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47707206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47707256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47708516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47708516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47713112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47713156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47713206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47713256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47714516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47714516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47719112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47719156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47719206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47719256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47720516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47720516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47725112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47725156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47725206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47725256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47726516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47726516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47731112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47731156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47731206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47731256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47732516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47732516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47737112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47737156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47737206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47737256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47738516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47738516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47743112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47743156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47743206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47743256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47744516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47744516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47749112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47749156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47749206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47749256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47750516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47750516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47755112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47755156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47755206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47755256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47756516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47756516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47761112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47761156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47761206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47761256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47762516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47762516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47767112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47767156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47767206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47767256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47768516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47768516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47773112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47773156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47773206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47773256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47774516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47774516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47779112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47779156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47779206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47779256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47780516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47780516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47785112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47785156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47785206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47785256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47786516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47786516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47791112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47791156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47791206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47791256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47792516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47792516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47821112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47821156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47821206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47821256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47822516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47822516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47827112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47827156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47827206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47827256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47828516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47828516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47833112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47833156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47833206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47833256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47834516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47834516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47839112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47839156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47839206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47839256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47840516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47840516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47845112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47845156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47845206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47845256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47846516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47846516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47851112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47851156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47851206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47851256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47852516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47852516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47857112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47857156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47857206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47857256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47858516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47858516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47863112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47863156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47863206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47863256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47864516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47864516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47869112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47869156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47869206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47869256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47870516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47870516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47875112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47875156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47875206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47875256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47876516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47876516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47881112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47881156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47881206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47881256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47882516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47882516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47887112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47887156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47887206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47887256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47888516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47888516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47893112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47893156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47893206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47893256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47894516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47894516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47899112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47899156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47899206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47899256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47900516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47900516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47905112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47905156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47905206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47905256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47906516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47906516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47911112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47911156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47911206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47911256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47912516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47912516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47917112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47917156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47917206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47917256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47918516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47918516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47947112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47947156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47947206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47947256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47948516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47948516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47953112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47953156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47953206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47953256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47954516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47954516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47959112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47959156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47959206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47959256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47960516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47960516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47965112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47965156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47965206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47965256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47966516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47966516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47971112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47971156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47971206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47971256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47972516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47972516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47977112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47977156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47977206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47977256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47978516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47978516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47983112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47983156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47983206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47983256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47984516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47984516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47989112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47989156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47989206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47989256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47990516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47990516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 47995112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 47995156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 47995206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 47995256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 47996516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 47996516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48001112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48001156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48001206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48001256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48002516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48002516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48007112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48007156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48007206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48007256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48008516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48008516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48013112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48013156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48013206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48013256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48014516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48014516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48019112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48019156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48019206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48019256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48020516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48020516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48025112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48025156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48025206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48025256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48026516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48026516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48031112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48031156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48031206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48031256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48032516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48032516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48037112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48037156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48037206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48037256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48038516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48038516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48043112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48043156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48043206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48043256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48044516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48044516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48073112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48073156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48073206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48073256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48074516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48074516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48079112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48079156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48079206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48079256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48080516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48080516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48085112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48085156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48085206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48085256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48086516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48086516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48091112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48091156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48091206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48091256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48092516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48092516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48097112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48097156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48097206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48097256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48098516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48098516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48103112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48103156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48103206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48103256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48104516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48104516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48109112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48109156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48109206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48109256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48110516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48110516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48115112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48115156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48115206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48115256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48116516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48116516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48121112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48121156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48121206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48121256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48122516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48122516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48127112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48127156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48127206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48127256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48128516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48128516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48133112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48133156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48133206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48133256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48134516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48134516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48139112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48139156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48139206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48139256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48140516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48140516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48145112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48145156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48145206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48145256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48146516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48146516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48151112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48151156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48151206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48151256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48152516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48152516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48157112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48157156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48157206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48157256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48158516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48158516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48163112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48163156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48163206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48163256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48164516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48164516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48169112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48169156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48169206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48169256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48170516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48170516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48199112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48199156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48199206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48199256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48200516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48200516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48205112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48205156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48205206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48205256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48206516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48206516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48211112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48211156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48211206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48211256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48212516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48212516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48217112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48217156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48217206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48217256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48218516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48218516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48223112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48223156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48223206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48223256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48224516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48224516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48229112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48229156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48229206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48229256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48230516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48230516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48235112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48235156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48235206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48235256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48236516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48236516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48241112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48241156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48241206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48241256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48242516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48242516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48247112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48247156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48247206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48247256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48248516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48248516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48253112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48253156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48253206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48253256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48254516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48254516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48259112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48259156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48259206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48259256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48260516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48260516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48265112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48265156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48265206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48265256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48266516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48266516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48271112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48271156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48271206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48271256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48272516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48272516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48277112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48277156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48277206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48277256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48278516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48278516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48283112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48283156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48283206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48283256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48284516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48284516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48289112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48289156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48289206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48289256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48290516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48290516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48295112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48295156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48295206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48295256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48296516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48296516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48325112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48325156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48325206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48325256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48325806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48326516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48326516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48331112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48331156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48331206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48331256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48331806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48332516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48332516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48337112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48337156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48337206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48337256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48337806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48338516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48338516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48343112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48343156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48343206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48343256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48343806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48344516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48344516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48349112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48349156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48349206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48349256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48349806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48350516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48350516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48355112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48355156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48355206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48355256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48355806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48356516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48356516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48361112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48361156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48361206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48361256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48361806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48362516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48362516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48367112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48367156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48367206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48367256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48367806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48368516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48368516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48373112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48373156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48373206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48373256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48373806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48374516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48374516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48379112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48379156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48379206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48379256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48379806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48380516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48380516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48385112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48385156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48385206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48385256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48385806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48386516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48386516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48391112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48391156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48391206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48391256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48391806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48392516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48392516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48397112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48397156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48397206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48397256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48397806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48398516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48398516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48403112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48403156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48403206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48403256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48403806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48404516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48404516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48409112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48409156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48409206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48409256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48409806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48410516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48410516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48415112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48415156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48415206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48415256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48415806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48416516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48416516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48421112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48421156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48421206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48421256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48421806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48422516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48422516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48451112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48451156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48451206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48451256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48451806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48452516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48452516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48457112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48457156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48457206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48457256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48457806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48458516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48458516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48463112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48463156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48463206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48463256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48463806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48464516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48464516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48469112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48469156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48469206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48469256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48469806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48470516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48470516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48475112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48475156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48475206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48475256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48475806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48476516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48476516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48481112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48481156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48481206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48481256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48481806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48482516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48482516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48487112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48487156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48487206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48487256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48487806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48488516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48488516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48493112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48493156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48493206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48493256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48493806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48494516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48494516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48499112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48499156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48499206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48499256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48499806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48500516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48500516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48505112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48505156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48505206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48505256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48505806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48506516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48506516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48511112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48511156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48511206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48511256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48511806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48512516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48512516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48517112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48517156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48517206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48517256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48517806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48518516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48518516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48523112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48523156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48523206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48523256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48523806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48524516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48524516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48529112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48529156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48529206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48529256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48529806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48530516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48530516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48535112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48535156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48535206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48535256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48535806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48536516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48536516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48541112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48541156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48541206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48541256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48541806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48542516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48542516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48547112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48547156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48547206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48547256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 48547806.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48548516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48548516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48577112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48577156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48577206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48577256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48577814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48578516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48578516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48583112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48583156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48583206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48583256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48583814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48584516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48584516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48589112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48589156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48589206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48589256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48589814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48590516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48590516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48595112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48595156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48595206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48595256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48595814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48596516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48596516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48601112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48601156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48601206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48601256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48601814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48602516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48602516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48607112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48607156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48607206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48607256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48607814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48608516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48608516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48613112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48613156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48613206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48613256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48613814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48614516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48614516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48619112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48619156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48619206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48619256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48619814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48620516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48620516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48625112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48625156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48625206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48625256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48625814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48626516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48626516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48631112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48631156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48631206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48631256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48631814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48632516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48632516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48637112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48637156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48637206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48637256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48637814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48638516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48638516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48643112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48643156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48643206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48643256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48643814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48644516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48644516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48649112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48649156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48649206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48649256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48649814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48650516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48650516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48655112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48655156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48655206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48655256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48655814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48656516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48656516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48661112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48661156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48661206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48661256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48661814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48662516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48662516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48667112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48667156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48667206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48667256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48667814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48668516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48668516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48673112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48673156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48673206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48673256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48673814.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48674516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48674516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48709112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48709156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48709206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48709256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48709892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48710516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48710516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48715112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48715156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48715206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48715256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48715892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48716516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48716516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48721112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48721156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48721206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48721256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48721892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48722516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48722516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48727112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48727156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48727206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48727256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48727892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48728516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48728516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48733112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48733156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48733206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48733256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48733892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48734516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48734516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48739112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48739156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48739206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48739256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48739892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48740516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48740516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48745112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48745156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48745206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48745256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48745892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48746516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48746516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48751112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48751156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48751206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48751256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48751892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48752516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48752516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48757112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48757156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48757206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48757256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48757892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48758516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48758516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48763112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48763156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48763206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48763256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48763892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48764516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48764516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48769112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48769156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48769206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48769256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48769892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48770516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48770516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48775112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48775156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48775206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48775256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48775892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48776516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48776516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48781112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48781156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48781206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48781256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48781892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48782516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48782516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48787112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48787156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48787206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48787256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48787892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48788516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48788516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48793112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48793156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48793206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48793256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48793892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48794516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48794516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48799112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48799156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48799206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48799256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48799892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48800516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48800516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48805112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48805156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48805206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48805256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48805892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48806516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48806516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48835112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48835156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48835206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48835256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48835970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48836516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48836516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48841112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48841156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48841206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48841256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48841970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48842516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48842516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48847112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48847156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48847206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48847256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48847970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48848516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48848516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48853112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48853156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48853206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48853256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48853970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48854516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48854516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48859112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48859156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48859206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48859256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48859970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48860516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48860516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48865112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48865156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48865206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48865256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48865970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48866516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48866516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48871112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48871156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48871206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48871256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48871970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48872516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48872516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48877112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48877156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48877206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48877256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48877970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48878516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48878516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48883112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48883156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48883206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48883256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48883970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48884516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48884516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48889112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48889156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48889206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48889256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48889970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48890516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48890516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48895112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48895156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48895206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48895256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48895970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48896516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48896516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48901112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48901156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48901206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48901256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48901970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48902516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48902516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48907112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48907156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48907206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48907256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48907970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48908516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48908516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48913112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48913156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48913206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48913256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48913970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48914516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48914516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48919112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48919156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48919206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48919256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48919970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48920516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48920516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48925112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48925156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48925206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48925256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48925970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48926516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48926516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48931112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48931156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48931206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48931256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 48931970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48932516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48932516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48961112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48961156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48961206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48961256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48962516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48962516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48967112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48967156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48967206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48967256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48968516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48968516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48973112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48973156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48973206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48973256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48974516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48974516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48979112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48979156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48979206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48979256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48980516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48980516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48985112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48985156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48985206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48985256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48986516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48986516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48991112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48991156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48991206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48991256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48992516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48992516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 48997112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 48997156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 48997206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 48997256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 48998516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 48998516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49003112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49003156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49003206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49003256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49004516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49004516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49009112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49009156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49009206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49009256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49010516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49010516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49015112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49015156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49015206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49015256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49016516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49016516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49021112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49021156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49021206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49021256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49022516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49022516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49027112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49027156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49027206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49027256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49028516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49028516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49033112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49033156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49033206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49033256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49034516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49034516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49039112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49039156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49039206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49039256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49040516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49040516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49045112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49045156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49045206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49045256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49046516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49046516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49051112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49051156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49051206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49051256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49052516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49052516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49057112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49057156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49057206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49057256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49058516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49058516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49087112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49087156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49087206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49087256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49088516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49088516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49093112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49093156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49093206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49093256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49094516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49094516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49099112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49099156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49099206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49099256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49100516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49100516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49105112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49105156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49105206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49105256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49106516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49106516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49111112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49111156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49111206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49111256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49112516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49112516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49117112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49117156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49117206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49117256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49118516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49118516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49123112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49123156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49123206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49123256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49124516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49124516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49129112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49129156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49129206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49129256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49130516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49130516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49135112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49135156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49135206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49135256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49136516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49136516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49141112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49141156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49141206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49141256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49142516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49142516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49147112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49147156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49147206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49147256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49148516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49148516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49153112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49153156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49153206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49153256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49154516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49154516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49159112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49159156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49159206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49159256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49160516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49160516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49165112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49165156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49165206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49165256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49166516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49166516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49171112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49171156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49171206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49171256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49172516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49172516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49177112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49177156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49177206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49177256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49178516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49178516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49183112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49183156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49183206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49183256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49184516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49184516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49213112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49213156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49213206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49213256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49214516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49214516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49219112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49219156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49219206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49219256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49220516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49220516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49225112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49225156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49225206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49225256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49226516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49226516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49231112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49231156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49231206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49231256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49232516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49232516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49237112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49237156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49237206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49237256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49238516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49238516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49243112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49243156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49243206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49243256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49244516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49244516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49249112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49249156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49249206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49249256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49250516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49250516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49255112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49255156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49255206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49255256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49256516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49256516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49261112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49261156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49261206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49261256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49262516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49262516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49267112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49267156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49267206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49267256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49268516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49268516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49273112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49273156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49273206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49273256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49274516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49274516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49279112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49279156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49279206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49279256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49280516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49280516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49285112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49285156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49285206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49285256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49286516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49286516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49291112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49291156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49291206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49291256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49292516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49292516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49297112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49297156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49297206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49297256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49298516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49298516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49303112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49303156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49303206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49303256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49304516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49304516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49309112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49309156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49309206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49309256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49310516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49310516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49339112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49339156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49339206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49339256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49340516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49340516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49345112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49345156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49345206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49345256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49346516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49346516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49351112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49351156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49351206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49351256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49352516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49352516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49357112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49357156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49357206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49357256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49358516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49358516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49363112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49363156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49363206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49363256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49364516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49364516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49369112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49369156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49369206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49369256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49370516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49370516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49375112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49375156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49375206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49375256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49376516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49376516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49381112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49381156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49381206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49381256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49382516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49382516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49387112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49387156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49387206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49387256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49388516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49388516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49393112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49393156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49393206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49393256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49394516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49394516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49399112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49399156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49399206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49399256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49400516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49400516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49405112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49405156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49405206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49405256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49406516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49406516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49411112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49411156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49411206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49411256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49412516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49412516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49417112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49417156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49417206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49417256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49418516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49418516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49423112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49423156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49423206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49423256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49424516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49424516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49429112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49429156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49429206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49429256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49430516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49430516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49435112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49435156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49435206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49435256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49436516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49436516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49465112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49465156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49465206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49465256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49466516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49466516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49471112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49471156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49471206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49471256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49472516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49472516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49477112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49477156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49477206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49477256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49478516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49478516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49483112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49483156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49483206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49483256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49484516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49484516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49489112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49489156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49489206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49489256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49490516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49490516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49495112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49495156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49495206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49495256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49496516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49496516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49501112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49501156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49501206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49501256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49502516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49502516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49507112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49507156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49507206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49507256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49508516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49508516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49513112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49513156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49513206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49513256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49514516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49514516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49519112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49519156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49519206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49519256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49520516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49520516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49525112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49525156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49525206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49525256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49526516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49526516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49531112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49531156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49531206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49531256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49532516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49532516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49537112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49537156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49537206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49537256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49538516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49538516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49543112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49543156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49543206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49543256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49544516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49544516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49549112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49549156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49549206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49549256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49550516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49550516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49555112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49555156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49555206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49555256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49556516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49556516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49561112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49561156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49561206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49561256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49562516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49562516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49591112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49591156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49591206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49591256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49592516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49592516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49592556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49597112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49597156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49597206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49597256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49598516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49598516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49598556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49603112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49603156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49603206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49603256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49604516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49604516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49604556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49609112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49609156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49609206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49609256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49610516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49610516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49610556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49615112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49615156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49615206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49615256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49616516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49616516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49616556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49621112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49621156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49621206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49621256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49622516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49622516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49622556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49627112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49627156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49627206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49627256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49628516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49628516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49628556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49633112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49633156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49633206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49633256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49634516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49634516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49634556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49639112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49639156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49639206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49639256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49640516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49640516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49640556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49645112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49645156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49645206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49645256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49646516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49646516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49646556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49651112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49651156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49651206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49651256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49652516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49652516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49652556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49657112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49657156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49657206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49657256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49658516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49658516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49658556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49663112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49663156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49663206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49663256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49664516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49664516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49664556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49669112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49669156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49669206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49669256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49670516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49670516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49670556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49675112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49675156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49675206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49675256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49676516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49676516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49676556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49681112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49681156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49681206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49681256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49682516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49682516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49682556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49687112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49687156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49687206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49687256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49688516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49688516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49688556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49717112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49717156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49717206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49717256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49718516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49718516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49718556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49723112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49723156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49723206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49723256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49724516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49724516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49724556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49729112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49729156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49729206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49729256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49730516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49730516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49730556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49735112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49735156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49735206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49735256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49736516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49736516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49736556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49741112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49741156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49741206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49741256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49742516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49742516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49742556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49747112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49747156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49747206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49747256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49748516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49748516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49748556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49753112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49753156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49753206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49753256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49754516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49754516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49754556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49759112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49759156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49759206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49759256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49760516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49760516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49760556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49765112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49765156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49765206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49765256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49766516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49766516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49766556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49771112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49771156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49771206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49771256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49772516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49772516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49772556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49777112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49777156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49777206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49777256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49778516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49778516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49778556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49783112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49783156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49783206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49783256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49784516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49784516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49784556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49789112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49789156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49789206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49789256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49790516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49790516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49790556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49795112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49795156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49795206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49795256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49796516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49796516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49796556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49801112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49801156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49801206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49801256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49802516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49802516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49802556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49807112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49807156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49807206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49807256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49808516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49808516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49808556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49813112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49813156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49813206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49813256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49814516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49814516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 49814556.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49843112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49843156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49843206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49843256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49844516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49844516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49844594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49849112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49849156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49849206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49849256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49850516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49850516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49850594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49855112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49855156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49855206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49855256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49856516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49856516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49856594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49861112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49861156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49861206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49861256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49862516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49862516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49862594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49867112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49867156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49867206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49867256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49868516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49868516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49868594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49873112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49873156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49873206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49873256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49874516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49874516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49874594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49879112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49879156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49879206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49879256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49880516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49880516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49880594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49885112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49885156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49885206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49885256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49886516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49886516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49886594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49891112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49891156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49891206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49891256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49892516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49892516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49892594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49897112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49897156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49897206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49897256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49898516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49898516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49898594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49903112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49903156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49903206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49903256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49904516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49904516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49904594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49909112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49909156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49909206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49909256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49910516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49910516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49910594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49915112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49915156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49915206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49915256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49916516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49916516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49916594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49921112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49921156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49921206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49921256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49922516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49922516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49922594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49927112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49927156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49927206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49927256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49928516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49928516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49928594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49933112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49933156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49933206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49933256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49934516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49934516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49934594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49939112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49939156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49939206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49939256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49940516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49940516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49940594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49975112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49975156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49975206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49975256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49976516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49976516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49976594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49981112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49981156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49981206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49981256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49982516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49982516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49982594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49987112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49987156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49987206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49987256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49988516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49988516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49988594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49993112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49993156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49993206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49993256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 49994516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 49994516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 49994594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 49999112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 49999156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 49999206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 49999256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50000516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50000516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50000594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50005112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50005156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50005206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50005256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50006516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50006516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50006594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50011112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50011156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50011206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50011256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50012516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50012516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50012594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50017112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50017156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50017206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50017256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50018516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50018516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50018594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50023112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50023156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50023206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50023256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50024516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50024516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50024594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50029112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50029156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50029206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50029256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50030516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50030516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50030594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50035112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50035156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50035206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50035256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50036516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50036516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50036594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50041112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50041156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50041206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50041256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50042516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50042516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50042594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50047112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50047156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50047206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50047256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50048516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50048516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50048594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50053112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50053156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50053206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50053256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50054516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50054516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50054594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50059112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50059156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50059206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50059256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50060516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50060516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50060594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50065112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50065156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50065206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50065256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50066516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50066516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50066594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50071112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50071156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50071206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50071256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50072516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50072516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50072594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50101112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50101156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50101206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50101256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50102516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50102516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50102594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50107112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50107156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50107206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50107256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50108516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50108516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50108594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50113112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50113156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50113206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50113256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50114516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50114516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50114594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50119112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50119156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50119206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50119256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50120516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50120516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50120594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50125112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50125156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50125206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50125256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50126516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50126516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50126594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50131112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50131156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50131206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50131256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50132516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50132516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50132594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50137112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50137156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50137206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50137256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50138516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50138516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50138594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50143112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50143156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50143206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50143256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50144516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50144516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50144594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50149112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50149156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50149206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50149256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50150516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50150516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50150594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50155112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50155156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50155206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50155256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50156516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50156516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50156594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50161112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50161156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50161206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50161256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50162516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50162516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50162594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50167112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50167156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50167206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50167256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50168516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50168516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50168594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50173112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50173156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50173206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50173256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50174516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50174516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50174594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50179112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50179156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50179206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50179256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50180516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50180516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50180594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50185112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50185156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50185206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50185256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50186516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50186516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50186594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50191112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50191156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50191206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50191256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50192516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50192516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50192594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50197112.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50197156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50197206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50197256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50198516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50198516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50198594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50227156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50227190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50227206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50227256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50228516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50228516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50228594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50233156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50233190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50233206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50233256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50234516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50234516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50234594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50239156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50239190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50239206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50239256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50240516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50240516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50240594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50245156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50245190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50245206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50245256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50246516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50246516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50246594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50251156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50251190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50251206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50251256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50252516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50252516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50252594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50257156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50257190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50257206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50257256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50258516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50258516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50258594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50263156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50263190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50263206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50263256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50264516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50264516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50264594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50269156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50269190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50269206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50269256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50270516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50270516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50270594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50275156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50275190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50275206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50275256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50276516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50276516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50276594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50281156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50281190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50281206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50281256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50282516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50282516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50282594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50287156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50287190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50287206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50287256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50288516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50288516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50288594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50293156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50293190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50293206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50293256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50294516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50294516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50294594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50299156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50299190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50299206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50299256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50300516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50300516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50300594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50305156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50305190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50305206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50305256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50306516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50306516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50306594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50311156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50311190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50311206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50311256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50312516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50312516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50312594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50317156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50317190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50317206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50317256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50318516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50318516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50318594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50323156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50323190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50323206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50323256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50324516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50324516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50324594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50353156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50353206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50353256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50353268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50354516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50354516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50354594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50359156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50359206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50359256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50359268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50360516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50360516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50360594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50365156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50365206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50365256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50365268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50366516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50366516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50366594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50371156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50371206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50371256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50371268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50372516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50372516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50372594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50377156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50377206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50377256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50377268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50378516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50378516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50378594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50383156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50383206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50383256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50383268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50384516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50384516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50384594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50389156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50389206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50389256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50389268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50390516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50390516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50390594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50395156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50395206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50395256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50395268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50396516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50396516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50396594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50401156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50401206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50401256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50401268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50402516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50402516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50402594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50407156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50407206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50407256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50407268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50408516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50408516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50408594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50413156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50413206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50413256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50413268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50414516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50414516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50414594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50419156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50419206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50419256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50419268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50420516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50420516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50420594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50425156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50425206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50425256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50425268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50426516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50426516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50426594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50431156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50431206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50431256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50431268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50432516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50432516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50432594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50437156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50437206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50437256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50437268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50438516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50438516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50438594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50443156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50443206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50443256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50443268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50444516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50444516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50444594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50449156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50449206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50449256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 50449268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50450516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50450516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50450594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50479156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50479206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50479256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50480516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50480516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50480594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50485156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50485206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50485256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50486516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50486516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50486594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50491156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50491206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50491256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50492516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50492516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50492594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50497156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50497206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50497256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50498516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50498516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50498594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50503156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50503206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50503256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50504516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50504516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50504594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50509156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50509206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50509256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50510516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50510516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50510594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50515156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50515206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50515256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50516516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50516516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50516594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50521156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50521206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50521256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50522516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50522516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50522594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50527156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50527206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50527256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50528516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50528516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50528594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50533156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50533206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50533256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50534516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50534516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50534594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50539156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50539206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50539256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50540516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50540516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50540594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50545156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50545206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50545256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50546516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50546516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50546594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50551156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50551206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50551256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50552516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50552516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50552594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50557156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50557206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50557256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50558516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50558516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50558594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50563156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50563206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50563256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50564516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50564516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50564594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50569156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50569206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50569256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50570516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50570516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50570594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50575156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50575206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50575256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50576516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50576516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50576594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50605156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50605206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50605256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50606516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50606516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50606594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50611156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50611206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50611256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50612516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50612516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50612594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50617156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50617206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50617256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50618516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50618516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50618594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50623156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50623206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50623256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50624516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50624516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50624594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50629156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50629206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50629256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50630516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50630516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50630594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50635156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50635206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50635256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50636516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50636516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50636594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50641156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50641206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50641256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50642516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50642516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50642594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50647156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50647206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50647256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50648516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50648516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50648594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50653156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50653206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50653256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50654516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50654516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50654594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50659156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50659206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50659256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50660516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50660516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50660594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50665156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50665206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50665256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50666516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50666516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50666594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50671156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50671206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50671256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50672516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50672516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50672594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50677156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50677206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50677256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50678516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50678516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50678594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50683156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50683206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50683256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50684516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50684516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50684594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50689156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50689206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50689256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50690516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50690516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50690594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50695156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50695206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50695256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50696516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50696516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50696594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50701156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50701206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50701256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50702516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50702516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50702594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50731156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50731206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50731256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50732516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50732516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50732594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50737156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50737206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50737256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50738516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50738516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50738594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50743156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50743206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50743256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50744516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50744516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50744594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50749156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50749206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50749256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50750516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50750516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50750594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50755156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50755206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50755256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50756516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50756516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50756594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50761156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50761206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50761256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50762516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50762516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50762594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50767156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50767206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50767256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50768516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50768516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50768594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50773156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50773206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50773256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50774516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50774516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50774594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50779156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50779206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50779256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50780516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50780516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50780594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50785156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50785206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50785256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50786516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50786516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50786594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50791156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50791206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50791256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50792516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50792516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50792594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50797156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50797206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50797256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50798516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50798516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50798594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50803156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50803206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50803256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50804516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50804516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50804594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50809156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50809206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50809256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50810516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50810516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50810594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50815156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50815206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50815256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50816516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50816516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50816594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50821156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50821206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50821256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50822516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50822516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50822594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50827156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50827206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50827256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50828516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50828516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50828594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50857156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50857206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50857256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50858516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50858516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50858594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50863156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50863206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50863256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50864516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50864516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50864594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50869156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50869206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50869256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50870516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50870516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50870594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50875156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50875206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50875256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50876516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50876516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50876594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50881156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50881206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50881256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50882516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50882516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50882594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50887156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50887206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50887256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50888516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50888516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50888594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50893156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50893206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50893256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50894516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50894516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50894594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50899156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50899206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50899256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50900516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50900516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50900594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50905156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50905206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50905256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50906516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50906516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50906594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50911156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50911206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50911256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50912516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50912516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50912594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50917156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50917206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50917256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50918516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50918516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50918594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50923156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50923206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50923256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50924516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50924516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50924594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50929156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50929206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50929256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50930516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50930516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50930594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50935156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50935206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50935256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50936516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50936516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50936594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50941156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50941206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50941256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50942516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50942516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50942594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50947156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50947206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50947256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50948516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50948516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50948594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50953156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50953206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50953256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50954516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50954516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50954594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50983156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50983206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50983256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50984516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50984516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50984594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50989156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50989206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50989256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50990516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50990516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50990594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 50995156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 50995206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 50995256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 50996516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 50996516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 50996594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51001156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51001206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51001256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51002516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51002516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51002594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51007156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51007206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51007256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51008516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51008516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51008594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51013156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51013206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51013256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51014516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51014516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51014594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51019156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51019206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51019256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51020516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51020516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51020594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51025156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51025206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51025256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51026516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51026516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51026594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51031156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51031206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51031256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51032516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51032516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51032594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51037156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51037206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51037256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51038516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51038516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51038594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51043156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51043206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51043256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51044516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51044516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51044594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51049156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51049206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51049256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51050516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51050516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51050594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51055156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51055206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51055256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51056516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51056516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51056594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51061156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51061206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51061256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51062516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51062516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51062594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51067156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51067206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51067256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51068516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51068516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51068594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51073156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51073206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51073256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51074516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51074516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51074594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51079156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51079206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51079256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51080516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51080516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51080594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51109156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51109206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51109256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51109856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51110516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51110516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51110594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51115156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51115206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51115256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51115856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51116516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51116516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51116594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51121156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51121206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51121256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51121856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51122516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51122516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51122594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51127156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51127206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51127256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51127856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51128516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51128516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51128594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51133156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51133206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51133256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51133856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51134516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51134516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51134594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51139156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51139206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51139256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51139856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51140516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51140516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51140594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51145156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51145206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51145256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51145856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51146516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51146516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51146594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51151156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51151206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51151256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51151856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51152516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51152516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51152594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51157156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51157206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51157256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51157856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51158516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51158516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51158594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51163156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51163206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51163256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51163856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51164516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51164516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51164594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51169156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51169206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51169256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51169856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51170516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51170516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51170594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51175156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51175206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51175256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51175856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51176516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51176516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51176594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51181156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51181206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51181256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51181856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51182516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51182516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51182594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51187156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51187206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51187256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51187856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51188516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51188516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51188594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51193156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51193206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51193256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51193856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51194516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51194516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51194594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51199156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51199206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51199256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51199856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51200516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51200516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51200594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51205156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51205206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51205256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51205856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51206516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51206516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51206594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51235156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51235206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51235256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51235856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51236516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51236516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51236594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51241156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51241206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51241256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51241856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51242516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51242516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51242594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51247156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51247206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51247256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51247856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51248516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51248516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51248594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51253156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51253206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51253256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51253856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51254516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51254516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51254594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51259156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51259206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51259256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51259856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51260516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51260516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51260594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51265156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51265206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51265256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51265856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51266516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51266516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51266594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51271156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51271206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51271256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51271856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51272516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51272516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51272594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51277156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51277206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51277256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51277856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51278516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51278516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51278594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51283156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51283206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51283256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51283856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51284516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51284516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51284594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51289156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51289206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51289256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51289856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51290516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51290516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51290594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51295156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51295206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51295256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51295856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51296516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51296516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51296594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51301156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51301206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51301256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51301856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51302516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51302516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51302594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51307156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51307206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51307256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51307856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51308516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51308516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51308594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51313156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51313206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51313256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51313856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51314516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51314516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51314594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51319156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51319206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51319256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51319856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51320516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51320516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51320594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51325156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51325206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51325256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51325856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51326516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51326516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51326594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51331156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51331206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51331256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 51331856.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51332516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51332516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51332594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51361156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51361206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51361256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51361892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51362516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51362516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51362594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51367156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51367206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51367256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51367892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51368516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51368516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51368594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51373156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51373206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51373256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51373892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51374516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51374516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51374594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51379156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51379206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51379256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51379892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51380516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51380516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51380594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51385156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51385206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51385256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51385892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51386516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51386516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51386594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51391156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51391206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51391256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51391892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51392516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51392516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51392594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51397156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51397206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51397256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51397892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51398516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51398516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51398594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51403156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51403206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51403256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51403892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51404516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51404516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51404594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51409156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51409206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51409256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51409892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51410516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51410516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51410594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51415156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51415206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51415256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51415892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51416516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51416516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51416594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51421156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51421206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51421256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51421892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51422516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51422516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51422594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51427156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51427206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51427256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51427892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51428516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51428516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51428594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51433156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51433206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51433256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51433892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51434516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51434516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51434594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51439156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51439206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51439256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51439892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51440516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51440516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51440594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51445156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51445206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51445256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51445892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51446516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51446516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51446594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51451156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51451206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51451256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51451892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51452516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51452516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51452594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51457156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51457206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51457256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51457892.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51458516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51458516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51458594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51493156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51493206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51493256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51493970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51494516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51494516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51494594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51499156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51499206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51499256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51499970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51500516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51500516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51500594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51505156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51505206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51505256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51505970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51506516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51506516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51506594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51511156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51511206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51511256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51511970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51512516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51512516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51512594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51517156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51517206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51517256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51517970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51518516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51518516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51518594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51523156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51523206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51523256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51523970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51524516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51524516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51524594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51529156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51529206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51529256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51529970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51530516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51530516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51530594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51535156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51535206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51535256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51535970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51536516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51536516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51536594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51541156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51541206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51541256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51541970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51542516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51542516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51542594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51547156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51547206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51547256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51547970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51548516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51548516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51548594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51553156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51553206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51553256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51553970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51554516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51554516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51554594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51559156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51559206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51559256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51559970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51560516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51560516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51560594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51565156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51565206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51565256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51565970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51566516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51566516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51566594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51571156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51571206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51571256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51571970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51572516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51572516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51572594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51577156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51577206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51577256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51577970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51578516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51578516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51578594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51583156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51583206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51583256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51583970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51584516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51584516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51584594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51589156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51589206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51589256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 51589970.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51590516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51590516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51590594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51619156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51619206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51619256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51620516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51620516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51620594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51625156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51625206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51625256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51626516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51626516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51626594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51631156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51631206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51631256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51632516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51632516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51632594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51637156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51637206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51637256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51638516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51638516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51638594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51643156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51643206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51643256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51644516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51644516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51644594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51649156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51649206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51649256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51650516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51650516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51650594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51655156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51655206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51655256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51656516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51656516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51656594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51661156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51661206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51661256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51662516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51662516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51662594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51667156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51667206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51667256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51668516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51668516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51668594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51673156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51673206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51673256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51674516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51674516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51674594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51679156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51679206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51679256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51680516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51680516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51680594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51685156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51685206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51685256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51686516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51686516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51686594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51691156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51691206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51691256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51692516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51692516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51692594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51697156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51697206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51697256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51698516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51698516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51698594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51703156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51703206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51703256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51704516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51704516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51704594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51709156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51709206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51709256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51710516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51710516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51710594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51715156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51715206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51715256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51716516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51716516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51716594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51745156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51745206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51745256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51746516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51746516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51746594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51751156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51751206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51751256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51752516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51752516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51752594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51757156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51757206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51757256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51758516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51758516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51758594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51763156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51763206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51763256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51764516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51764516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51764594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51769156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51769206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51769256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51770516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51770516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51770594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51775156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51775206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51775256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51776516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51776516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51776594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51781156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51781206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51781256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51782516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51782516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51782594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51787156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51787206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51787256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51788516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51788516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51788594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51793156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51793206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51793256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51794516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51794516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51794594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51799156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51799206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51799256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51800516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51800516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51800594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51805156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51805206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51805256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51806516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51806516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51806594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51811156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51811206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51811256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51812516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51812516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51812594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51817156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51817206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51817256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51818516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51818516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51818594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51823156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51823206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51823256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51824516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51824516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51824594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51829156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51829206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51829256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51830516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51830516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51830594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51835156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51835206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51835256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51836516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51836516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51836594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51841156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51841206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51841256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51842516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51842516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51842594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51871156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51871206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51871256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51872516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51872516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51872594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51877156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51877206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51877256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51878516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51878516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51878594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51883156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51883206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51883256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51884516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51884516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51884594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51889156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51889206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51889256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51890516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51890516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51890594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51895156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51895206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51895256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51896516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51896516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51896594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51901156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51901206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51901256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51902516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51902516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51902594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51907156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51907206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51907256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51908516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51908516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51908594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51913156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51913206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51913256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51914516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51914516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51914594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51919156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51919206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51919256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51920516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51920516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51920594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51925156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51925206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51925256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51926516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51926516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51926594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51931156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51931206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51931256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51932516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51932516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51932594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51937156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51937206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51937256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51938516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51938516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51938594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51943156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51943206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51943256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51944516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51944516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51944594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51949156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51949206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51949256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51950516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51950516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51950594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51955156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51955206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51955256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51956516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51956516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51956594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51961156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51961206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51961256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51962516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51962516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51962594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51967156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51967206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51967256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51968516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51968516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51968594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 51997156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 51997206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 51997256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 51998516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 51998516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 51998594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52003156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52003206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52003256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52004516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52004516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52004594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52009156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52009206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52009256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52010516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52010516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52010594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52015156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52015206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52015256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52016516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52016516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52016594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52021156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52021206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52021256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52022516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52022516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52022594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52027156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52027206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52027256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52028516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52028516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52028594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52033156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52033206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52033256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52034516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52034516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52034594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52039156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52039206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52039256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52040516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52040516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52040594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52045156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52045206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52045256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52046516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52046516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52046594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52051156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52051206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52051256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52052516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52052516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52052594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52057156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52057206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52057256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52058516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52058516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52058594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52063156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52063206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52063256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52064516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52064516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52064594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52069156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52069206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52069256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52070516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52070516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52070594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52075156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52075206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52075256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52076516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52076516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52076594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52081156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52081206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52081256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52082516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52082516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52082594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52087156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52087206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52087256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52088516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52088516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52088594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52093156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52093206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52093256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52094516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52094516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52094594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52123156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52123206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52123256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52124516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52124516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52124594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52129156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52129206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52129256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52130516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52130516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52130594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52135156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52135206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52135256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52136516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52136516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52136594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52141156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52141206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52141256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52142516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52142516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52142594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52147156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52147206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52147256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52148516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52148516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52148594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52153156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52153206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52153256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52154516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52154516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52154594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52159156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52159206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52159256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52160516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52160516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52160594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52165156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52165206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52165256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52166516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52166516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52166594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52171156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52171206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52171256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52172516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52172516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52172594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52177156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52177206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52177256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52178516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52178516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52178594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52183156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52183206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52183256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52184516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52184516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52184594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52189156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52189206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52189256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52190516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52190516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52190594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52195156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52195206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52195256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52196516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52196516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52196594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52201156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52201206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52201256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52202516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52202516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52202594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52207156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52207206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52207256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52208516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52208516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52208594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52213156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52213206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52213256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52214516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52214516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52214594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52219156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52219206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52219256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52220516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52220516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52220594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52249156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52249206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52249256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52250516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52250516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52250594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52255156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52255206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52255256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52256516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52256516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52256594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52261156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52261206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52261256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52262516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52262516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52262594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52267156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52267206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52267256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52268516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52268516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52268594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52273156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52273206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52273256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52274516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52274516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52274594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52279156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52279206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52279256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52280516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52280516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52280594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52285156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52285206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52285256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52286516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52286516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52286594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52291156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52291206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52291256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52292516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52292516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52292594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52297156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52297206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52297256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52298516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52298516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52298594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52303156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52303206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52303256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52304516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52304516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52304594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52309156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52309206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52309256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52310516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52310516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52310594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52315156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52315206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52315256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52316516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52316516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52316594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52321156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52321206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52321256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52322516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52322516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52322594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52327156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52327206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52327256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52328516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52328516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52328594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52333156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52333206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52333256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52334516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52334516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52334594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52339156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52339206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52339256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52340516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52340516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52340594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52345156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52345206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52345256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52346516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52346516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52346594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52375156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52375206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52375256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52376516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52376516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52376594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52376606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52381156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52381206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52381256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52382516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52382516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52382594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52382606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52387156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52387206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52387256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52388516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52388516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52388594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52388606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52393156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52393206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52393256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52394516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52394516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52394594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52394606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52399156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52399206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52399256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52400516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52400516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52400594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52400606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52405156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52405206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52405256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52406516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52406516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52406594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52406606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52411156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52411206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52411256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52412516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52412516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52412594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52412606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52417156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52417206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52417256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52418516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52418516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52418594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52418606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52423156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52423206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52423256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52424516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52424516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52424594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52424606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52429156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52429206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52429256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52430516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52430516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52430594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52430606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52435156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52435206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52435256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52436516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52436516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52436594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52436606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52441156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52441206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52441256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52442516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52442516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52442594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52442606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52447156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52447206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52447256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52448516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52448516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52448594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52448606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52453156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52453206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52453256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52454516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52454516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52454594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52454606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52459156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52459206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52459256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52460516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52460516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52460594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52460606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52465156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52465206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52465256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52466516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52466516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52466594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52466606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52471156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52471206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52471256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52472516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52472516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52472594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52472606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52501156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52501206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52501256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52502516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52502516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52502594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52502606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52507156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52507206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52507256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52508516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52508516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52508594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52508606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52513156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52513206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52513256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52514516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52514516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52514594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52514606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52519156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52519206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52519256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52520516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52520516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52520594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52520606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52525156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52525206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52525256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52526516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52526516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52526594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52526606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52531156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52531206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52531256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52532516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52532516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52532594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52532606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52537156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52537206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52537256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52538516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52538516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52538594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52538606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52543156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52543206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52543256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52544516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52544516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52544594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52544606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52549156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52549206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52549256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52550516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52550516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52550594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52550606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52555156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52555206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52555256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52556516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52556516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52556594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52556606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52561156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52561206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52561256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52562516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52562516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52562594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52562606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52567156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52567206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52567256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52568516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52568516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52568594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52568606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52573156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52573206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52573256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52574516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52574516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52574594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52574606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52579156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52579206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52579256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52580516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52580516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52580594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52580606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52585156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52585206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52585256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52586516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52586516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52586594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52586606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52591156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52591206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52591256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52592516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52592516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52592594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52592606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52597156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52597206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52597256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52598516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52598516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52598594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 52598606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52627156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52627206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52627256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52628516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52628516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52628594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52628672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52633156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52633206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52633256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52634516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52634516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52634594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52634672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52639156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52639206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52639256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52640516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52640516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52640594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52640672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52645156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52645206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52645256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52646516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52646516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52646594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52646672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52651156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52651206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52651256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52652516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52652516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52652594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52652672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52657156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52657206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52657256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52658516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52658516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52658594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52658672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52663156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52663206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52663256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52664516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52664516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52664594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52664672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52669156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52669206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52669256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52670516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52670516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52670594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52670672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52675156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52675206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52675256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52676516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52676516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52676594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52676672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52681156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52681206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52681256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52682516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52682516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52682594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52682672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52687156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52687206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52687256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52688516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52688516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52688594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52688672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52693156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52693206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52693256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52694516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52694516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52694594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52694672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52699156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52699206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52699256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52700516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52700516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52700594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52700672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52705156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52705206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52705256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52706516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52706516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52706594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52706672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52711156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52711206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52711256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52712516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52712516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52712594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52712672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52717156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52717206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52717256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52718516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52718516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52718594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52718672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52723156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52723206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52723256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52724516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52724516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52724594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52724672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52759156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52759206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52759256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52760516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52760516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52760594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52760672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52765156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52765206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52765256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52766516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52766516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52766594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52766672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52771156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52771206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52771256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52772516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52772516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52772594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52772672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52777156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52777206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52777256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52778516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52778516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52778594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52778672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52783156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52783206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52783256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52784516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52784516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52784594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52784672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52789156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52789206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52789256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52790516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52790516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52790594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52790672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52795156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52795206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52795256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52796516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52796516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52796594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52796672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52801156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52801206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52801256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52802516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52802516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52802594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52802672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52807156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52807206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52807256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52808516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52808516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52808594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52808672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52813156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52813206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52813256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52814516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52814516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52814594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52814672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52819156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52819206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52819256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52820516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52820516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52820594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52820672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52825156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52825206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52825256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52826516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52826516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52826594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52826672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52831156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52831206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52831256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52832516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52832516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52832594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52832672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52837156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52837206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52837256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52838516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52838516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52838594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52838672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52843156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52843206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52843256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52844516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52844516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52844594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52844672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52849156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52849206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52849256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52850516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52850516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52850594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52850672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52855156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52855206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52855256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52856516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52856516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52856594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52856672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52891156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52891206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52891256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52892516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52892516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52892594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52892672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52897156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52897206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52897256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52898516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52898516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52898594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52898672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52903156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52903206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52903256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52904516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52904516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52904594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52904672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52909156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52909206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52909256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52910516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52910516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52910594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52910672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52915156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52915206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52915256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52916516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52916516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52916594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52916672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52921156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52921206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52921256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52922516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52922516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52922594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52922672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52927156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52927206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52927256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52928516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52928516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52928594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52928672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52933156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52933206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52933256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52934516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52934516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52934594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52934672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52939156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52939206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52939256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52940516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52940516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52940594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52940672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52945156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52945206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52945256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52946516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52946516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52946594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52946672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52951156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52951206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52951256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52952516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52952516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52952594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52952672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52957156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52957206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52957256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52958516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52958516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52958594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52958672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52963156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52963206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52963256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52964516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52964516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52964594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52964672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52969156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52969206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52969256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52970516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52970516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52970594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52970672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52975156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52975206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52975256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52976516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52976516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52976594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52976672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52981156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52981206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52981256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52982516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52982516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52982594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52982672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 52987156.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 52987206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 52987256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 52988516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 52988516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 52988594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 52988672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53017190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53017206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53017256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53018516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53018516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53018594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53018672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53023190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53023206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53023256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53024516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53024516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53024594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53024672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53029190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53029206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53029256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53030516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53030516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53030594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53030672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53035190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53035206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53035256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53036516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53036516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53036594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53036672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53041190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53041206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53041256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53042516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53042516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53042594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53042672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53047190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53047206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53047256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53048516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53048516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53048594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53048672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53053190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53053206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53053256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53054516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53054516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53054594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53054672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53059190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53059206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53059256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53060516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53060516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53060594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53060672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53065190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53065206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53065256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53066516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53066516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53066594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53066672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53071190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53071206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53071256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53072516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53072516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53072594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53072672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53077190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53077206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53077256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53078516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53078516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53078594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53078672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53083190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53083206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53083256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53084516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53084516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53084594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53084672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53089190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53089206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53089256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53090516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53090516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53090594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53090672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53095190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53095206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53095256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53096516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53096516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53096594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53096672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53101190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53101206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53101256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53102516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53102516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53102594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53102672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53107190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53107206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53107256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53108516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53108516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53108594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53108672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53113190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53113206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53113256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53114516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53114516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53114594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53114672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53149190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53149206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53149256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53150516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53150516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53150594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53150672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53155190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53155206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53155256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53156516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53156516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53156594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53156672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53161190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53161206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53161256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53162516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53162516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53162594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53162672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53167190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53167206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53167256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53168516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53168516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53168594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53168672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53173190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53173206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53173256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53174516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53174516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53174594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53174672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53179190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53179206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53179256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53180516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53180516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53180594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53180672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53185190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53185206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53185256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53186516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53186516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53186594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53186672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53191190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53191206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53191256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53192516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53192516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53192594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53192672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53197190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53197206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53197256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53198516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53198516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53198594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53198672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53203190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53203206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53203256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53204516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53204516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53204594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53204672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53209190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53209206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53209256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53210516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53210516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53210594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53210672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53215190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53215206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53215256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53216516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53216516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53216594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53216672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53221190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53221206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53221256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53222516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53222516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53222594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53222672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53227190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53227206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53227256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53228516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53228516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53228594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53228672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53233190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53233206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53233256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53234516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53234516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53234594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53234672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53239190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53239206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53239256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53240516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53240516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53240594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53240672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53245190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53245206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53245256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53246516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53246516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53246594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53246672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53281190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53281206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53281256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53282516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53282516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53282594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53282672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53287190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53287206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53287256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53288516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53288516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53288594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53288672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53293190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53293206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53293256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53294516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53294516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53294594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53294672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53299190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53299206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53299256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53300516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53300516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53300594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53300672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53305190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53305206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53305256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53306516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53306516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53306594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53306672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53311190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53311206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53311256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53312516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53312516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53312594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53312672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53317190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53317206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53317256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53318516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53318516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53318594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53318672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53323190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53323206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53323256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53324516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53324516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53324594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53324672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53329190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53329206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53329256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53330516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53330516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53330594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53330672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53335190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53335206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53335256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53336516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53336516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53336594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53336672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53341190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53341206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53341256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53342516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53342516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53342594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53342672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53347190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53347206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53347256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53348516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53348516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53348594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53348672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53353190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53353206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53353256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53354516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53354516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53354594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53354672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53359190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53359206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53359256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53360516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53360516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53360594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53360672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53365190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53365206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53365256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53366516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53366516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53366594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53366672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53371190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53371206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53371256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53372516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53372516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53372594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53372672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53377190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53377206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53377256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53378516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53378516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53378594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53378672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53407190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53407206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53407256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53408516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53408516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53408594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53408672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53413190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53413206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53413256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53414516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53414516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53414594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53414672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53419190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53419206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53419256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53420516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53420516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53420594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53420672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53425190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53425206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53425256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53426516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53426516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53426594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53426672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53431190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53431206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53431256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53432516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53432516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53432594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53432672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53437190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53437206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53437256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53438516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53438516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53438594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53438672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53443190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53443206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53443256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53444516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53444516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53444594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53444672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53449190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53449206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53449256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53450516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53450516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53450594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53450672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53455190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53455206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53455256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53456516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53456516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53456594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53456672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53461190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53461206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53461256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53462516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53462516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53462594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53462672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53467190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53467206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53467256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53468516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53468516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53468594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53468672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53473190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53473206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53473256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53474516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53474516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53474594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53474672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53479190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53479206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53479256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53480516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53480516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53480594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53480672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53485190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53485206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53485256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53486516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53486516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53486594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53486672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53491190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53491206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53491256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53492516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53492516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53492594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53492672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53497190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53497206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53497256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53498516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53498516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53498594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53498672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53503190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 53503206.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53503256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53504516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53504516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53504594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53504672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53533190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53533256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53533268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53534516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53534516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53534594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53534672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53539190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53539256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53539268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53540516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53540516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53540594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53540672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53545190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53545256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53545268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53546516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53546516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53546594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53546672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53551190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53551256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53551268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53552516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53552516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53552594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53552672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53557190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53557256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53557268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53558516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53558516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53558594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53558672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53563190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53563256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53563268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53564516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53564516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53564594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53564672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53569190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53569256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53569268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53570516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53570516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53570594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53570672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53575190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53575256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53575268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53576516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53576516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53576594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53576672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53581190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53581256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53581268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53582516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53582516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53582594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53582672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53587190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53587256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53587268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53588516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53588516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53588594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53588672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53593190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53593256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53593268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53594516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53594516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53594594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53594672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53599190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53599256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53599268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53600516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53600516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53600594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53600672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53605190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53605256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53605268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53606516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53606516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53606594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53606672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53611190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53611256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53611268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53612516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53612516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53612594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53612672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53617190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53617256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53617268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53618516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53618516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53618594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53618672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53623190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53623256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53623268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53624516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53624516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53624594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53624672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53629190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53629256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53629268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53630516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53630516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53630594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53630672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53665190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53665256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53665268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53666516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53666516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53666594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53666672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53671190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53671256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53671268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53672516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53672516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53672594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53672672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53677190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53677256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53677268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53678516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53678516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53678594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53678672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53683190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53683256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53683268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53684516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53684516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53684594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53684672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53689190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53689256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53689268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53690516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53690516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53690594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53690672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53695190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53695256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53695268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53696516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53696516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53696594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53696672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53701190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53701256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53701268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53702516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53702516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53702594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53702672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53707190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53707256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53707268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53708516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53708516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53708594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53708672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53713190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53713256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53713268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53714516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53714516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53714594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53714672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53719190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53719256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53719268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53720516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53720516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53720594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53720672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53725190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53725256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53725268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53726516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53726516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53726594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53726672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53731190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53731256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53731268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53732516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53732516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53732594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53732672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53737190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53737256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53737268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53738516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53738516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53738594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53738672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53743190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53743256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53743268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53744516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53744516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53744594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53744672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53749190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53749256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53749268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53750516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53750516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53750594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53750672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53755190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53755256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53755268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53756516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53756516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53756594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53756672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53761190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53761256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53761268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53762516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53762516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53762594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53762672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53797190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53797256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53797268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53798516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53798516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53798594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53798672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53803190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53803256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53803268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53804516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53804516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53804594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53804672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53809190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53809256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53809268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53810516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53810516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53810594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53810672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53815190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53815256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53815268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53816516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53816516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53816594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53816672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53821190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53821256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53821268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53822516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53822516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53822594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53822672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53827190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53827256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53827268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53828516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53828516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53828594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53828672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53833190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53833256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53833268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53834516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53834516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53834594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53834672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53839190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53839256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53839268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53840516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53840516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53840594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53840672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53845190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53845256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53845268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53846516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53846516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53846594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53846672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53851190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53851256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53851268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53852516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53852516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53852594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53852672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53857190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53857256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53857268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53858516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53858516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53858594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53858672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53863190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53863256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53863268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53864516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53864516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53864594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53864672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53869190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53869256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53869268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53870516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53870516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53870594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53870672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53875190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53875256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53875268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53876516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53876516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53876594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53876672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53881190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53881256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53881268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53882516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53882516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53882594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53882672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53887190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53887256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53887268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53888516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53888516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53888594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53888672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53893190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53893256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53893268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53894516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53894516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53894594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53894672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53923190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53923256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53923268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53924516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53924516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53924594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53924672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53929190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53929256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53929268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53930516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53930516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53930594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53930672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53935190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53935256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53935268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53936516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53936516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53936594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53936672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53941190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53941256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53941268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53942516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53942516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53942594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53942672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53947190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53947256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53947268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53948516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53948516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53948594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53948672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53953190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53953256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53953268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53954516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53954516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53954594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53954672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53959190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53959256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53959268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53960516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53960516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53960594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53960672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53965190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53965256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53965268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53966516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53966516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53966594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53966672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53971190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53971256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53971268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53972516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53972516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53972594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53972672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53977190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53977256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53977268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53978516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53978516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53978594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53978672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53983190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53983256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53983268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53984516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53984516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53984594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53984672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53989190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53989256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53989268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53990516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53990516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53990594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53990672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 53995190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 53995256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 53995268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 53996516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 53996516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 53996594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 53996672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54001190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 54001256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54001268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54002516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54002516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54002594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54002672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54007190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 54007256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54007268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54008516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54008516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54008594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54008672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54013190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 54013256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54013268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54014516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54014516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54014594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54014672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54019190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 54019256.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54019268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54020516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54020516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54020594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54020672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54049190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54049268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54049268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54050516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54050516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54050594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54050672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54055190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54055268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54055268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54056516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54056516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54056594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54056672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54061190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54061268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54061268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54062516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54062516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54062594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54062672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54067190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54067268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54067268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54068516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54068516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54068594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54068672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54073190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54073268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54073268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54074516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54074516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54074594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54074672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54079190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54079268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54079268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54080516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54080516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54080594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54080672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54085190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54085268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54085268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54086516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54086516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54086594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54086672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54091190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54091268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54091268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54092516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54092516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54092594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54092672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54097190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54097268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54097268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54098516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54098516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54098594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54098672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54103190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54103268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54103268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54104516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54104516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54104594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54104672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54109190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54109268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54109268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54110516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54110516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54110594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54110672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54115190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54115268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54115268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54116516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54116516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54116594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54116672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54121190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54121268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54121268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54122516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54122516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54122594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54122672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54127190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54127268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54127268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54128516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54128516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54128594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54128672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54133190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54133268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54133268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54134516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54134516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54134594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54134672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54139190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54139268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54139268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54140516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54140516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54140594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54140672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54145190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54145268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54145268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54146516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54146516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54146594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54146672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54181190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54181268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54181268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54182516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54182516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54182594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54182672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54187190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54187268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54187268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54188516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54188516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54188594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54188672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54193190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54193268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54193268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54194516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54194516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54194594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54194672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54199190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54199268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54199268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54200516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54200516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54200594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54200672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54205190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54205268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54205268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54206516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54206516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54206594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54206672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54211190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54211268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54211268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54212516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54212516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54212594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54212672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54217190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54217268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54217268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54218516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54218516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54218594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54218672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54223190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54223268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54223268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54224516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54224516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54224594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54224672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54229190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54229268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54229268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54230516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54230516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54230594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54230672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54235190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54235268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54235268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54236516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54236516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54236594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54236672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54241190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54241268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54241268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54242516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54242516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54242594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54242672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54247190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54247268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54247268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54248516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54248516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54248594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54248672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54253190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54253268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54253268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54254516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54254516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54254594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54254672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54259190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54259268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54259268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54260516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54260516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54260594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54260672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54265190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54265268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54265268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54266516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54266516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54266594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54266672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54271190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54271268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54271268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54272516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54272516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54272594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54272672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54277190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54277268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54277268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54278516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54278516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54278594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54278672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54313190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54313268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54313268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54314516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54314516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54314594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54314672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54319190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54319268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54319268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54320516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54320516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54320594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54320672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54325190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54325268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54325268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54326516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54326516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54326594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54326672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54331190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54331268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54331268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54332516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54332516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54332594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54332672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54337190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54337268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54337268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54338516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54338516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54338594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54338672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54343190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54343268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54343268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54344516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54344516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54344594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54344672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54349190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54349268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54349268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54350516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54350516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54350594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54350672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54355190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54355268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54355268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54356516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54356516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54356594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54356672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54361190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54361268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54361268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54362516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54362516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54362594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54362672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54367190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54367268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54367268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54368516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54368516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54368594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54368672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54373190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54373268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54373268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54374516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54374516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54374594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54374672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54379190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54379268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54379268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54380516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54380516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54380594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54380672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54385190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54385268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54385268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54386516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54386516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54386594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54386672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54391190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54391268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54391268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54392516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54392516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54392594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54392672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54397190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54397268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54397268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54398516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54398516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54398594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54398672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54403190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54403268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54403268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54404516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54404516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54404594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54404672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54409190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54409268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54409268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54410516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54410516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54410594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54410672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54439190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54439268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54439268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54439306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54440516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54440516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54440594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54440672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54445190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54445268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54445268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54445306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54446516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54446516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54446594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54446672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54451190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54451268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54451268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54451306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54452516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54452516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54452594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54452672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54457190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54457268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54457268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54457306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54458516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54458516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54458594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54458672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54463190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54463268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54463268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54463306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54464516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54464516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54464594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54464672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54469190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54469268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54469268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54469306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54470516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54470516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54470594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54470672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54475190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54475268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54475268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54475306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54476516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54476516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54476594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54476672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54481190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54481268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54481268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54481306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54482516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54482516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54482594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54482672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54487190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54487268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54487268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54487306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54488516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54488516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54488594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54488672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54493190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54493268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54493268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54493306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54494516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54494516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54494594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54494672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54499190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54499268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54499268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54499306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54500516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54500516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54500594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54500672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54505190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54505268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54505268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54505306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54506516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54506516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54506594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54506672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54511190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54511268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54511268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54511306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54512516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54512516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54512594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54512672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54517190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54517268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54517268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54517306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54518516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54518516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54518594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54518672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54523190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54523268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54523268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54523306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54524516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54524516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54524594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54524672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54529190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54529268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54529268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54529306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54530516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54530516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54530594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54530672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54535190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54535268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54535268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54535306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54536516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54536516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54536594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54536672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54565190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54565268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54565268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54565306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54566516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54566516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54566594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54566672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54571190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54571268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54571268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54571306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54572516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54572516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54572594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54572672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54577190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54577268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54577268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54577306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54578516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54578516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54578594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54578672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54583190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54583268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54583268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54583306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54584516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54584516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54584594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54584672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54589190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54589268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54589268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54589306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54590516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54590516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54590594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54590672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54595190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54595268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54595268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54595306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54596516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54596516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54596594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54596672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54601190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54601268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54601268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54601306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54602516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54602516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54602594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54602672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54607190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54607268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54607268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54607306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54608516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54608516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54608594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54608672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54613190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54613268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54613268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54613306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54614516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54614516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54614594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54614672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54619190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54619268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54619268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54619306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54620516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54620516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54620594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54620672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54625190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54625268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54625268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54625306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54626516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54626516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54626594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54626672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54631190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54631268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54631268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54631306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54632516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54632516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54632594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54632672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54637190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54637268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54637268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54637306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54638516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54638516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54638594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54638672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54643190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54643268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54643268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54643306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54644516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54644516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54644594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54644672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54649190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54649268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54649268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54649306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54650516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54650516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54650594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54650672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54655190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54655268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54655268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54655306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54656516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54656516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54656594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54656672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54661190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54661268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54661268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 54661306.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54662516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54662516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54662594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54662672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54691190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54691268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54691268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54691346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54692516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54692516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54692594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54692672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54697190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54697268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54697268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54697346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54698516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54698516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54698594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54698672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54703190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54703268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54703268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54703346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54704516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54704516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54704594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54704672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54709190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54709268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54709268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54709346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54710516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54710516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54710594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54710672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54715190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54715268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54715268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54715346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54716516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54716516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54716594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54716672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54721190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54721268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54721268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54721346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54722516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54722516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54722594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54722672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54727190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54727268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54727268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54727346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54728516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54728516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54728594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54728672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54733190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54733268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54733268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54733346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54734516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54734516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54734594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54734672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54739190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54739268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54739268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54739346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54740516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54740516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54740594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54740672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54745190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54745268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54745268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54745346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54746516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54746516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54746594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54746672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54751190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54751268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54751268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54751346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54752516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54752516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54752594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54752672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54757190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54757268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54757268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54757346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54758516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54758516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54758594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54758672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54763190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54763268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54763268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54763346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54764516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54764516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54764594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54764672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54769190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54769268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54769268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54769346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54770516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54770516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54770594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54770672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54775190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54775268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54775268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54775346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54776516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54776516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54776594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54776672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54781190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54781268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54781268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54781346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54782516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54782516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54782594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54782672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 54787190.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 54787268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 54787268.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 54787346.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 54788516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 54788516.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 54788594.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 54788672.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 101) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 102) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 104) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 105) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 106) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 107) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 109) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 110) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 111) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 112) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 114) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 116) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 119) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 120) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 121) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 122) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 124) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 126) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 129) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 132) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 134) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 135) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 136) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 139) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 140) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 141) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 144) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 146) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 148) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 149) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 151) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 153) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 154) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 155) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 156) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 158) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 159) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 161) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 163) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 164) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 166) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 167) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 168) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 169) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 171) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 172) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 174) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 176) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 179) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 181) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 183) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 184) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 186) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 187) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 188) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 189) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 191) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 196) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 199) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 101) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 102) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 104) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 105) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 107) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 109) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 110) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 112) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 114) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 116) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 120) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 122) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 129) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 132) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 134) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 135) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 140) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 144) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 146) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 148) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 149) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 151) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 153) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 155) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 156) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 158) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 159) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 161) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 163) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 164) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 166) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 167) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 168) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 171) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 172) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 174) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 176) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 179) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 181) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 183) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 184) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 186) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 187) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 188) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 191) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 196) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 199) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 952) -> [ 4500 ps] ACT @ (2, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] ACT @ (3, 0) -> [ 1500 ps] WR @ (2, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 256) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] ACT @ (4, 0) -> [ 1500 ps] WR @ (3, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] ACT @ (5, 0) -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> +[ 4500 ps] ACT @ (6, 0) -> [ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 944) -> [ 4500 ps] ACT @ (7, 0) -> [ 1500 ps] WR @ (6, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 1) -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] ACT @ (1, 1) -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> +[ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] ACT @ (2, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] ACT @ (5, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> +[ 1500 ps] ACT @ (6, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 1500 ps] ACT @ (7, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] ACT @ (0, 1) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 1) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> + +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 118320 ns +Time Done: 133116 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 133170000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> +[ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 0) -> +[ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] ACT @ (2, 0) -> +[ 1500 ps] WR @ (1, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> +[ 4500 ps] ACT @ (3, 0) -> [ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 440) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> [ 4500 ps] ACT @ (6, 0) -> [ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> [ 4500 ps] ACT @ (7, 0) -> [ 1500 ps] WR @ (6, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 1) -> +[ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] ACT @ (1, 1) -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] ACT @ (2, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 1500 ps] ACT @ (3, 0) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] ACT @ (4, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (6, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 944) -> [ 1500 ps] ACT @ (7, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> +[ 1500 ps] ACT @ (0, 1) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 1) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 133116 ns +Time Done: 147930 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 32767) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 147984000.0 ps +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 32767) -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 944) -> [ 4500 ps] ACT @ (2, 32767) -> [ 1500 ps] WR @ (1, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] ACT @ (3, 32767) -> [ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] ACT @ (4, 32767) -> [ 1500 ps] WR @ (3, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] ACT @ (5, 32767) -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 952) -> [ 1500 ps] PRE @ (6) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (5, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> [ 4500 ps] ACT @ (6, 32767) -> [ 1500 ps] WR @ (5, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 952) -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> [ 4500 ps] ACT @ (7, 32767) -> +[ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 32767) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 32768) -> [ 1500 ps] WR @ (7, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] ACT @ (1, 32768) -> +[ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32767) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 32767) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] ACT @ (2, 32767) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 1500 ps] ACT @ (3, 32767) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 944) -> [ 1500 ps] ACT @ (4, 32767) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] ACT @ (5, 32767) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 1500 ps] ACT @ (6, 32767) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 1500 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] ACT @ (0, 32768) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 32768) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 147930 ns +Time Done: 162744 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2852) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] ACT @ (4, 2852) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 1773) -> [ 1500 ps] NOP -> FAILED: Address = 33554559, expected data = 286d5d50286c4f50286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 162798000.0 ps +[ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1773) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65150) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 694) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64071) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61913) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60834) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56517) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57596) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54358) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55438) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52200) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48962) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50042) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47883) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45725) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46804) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44646) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42487) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40329) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38170) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39250) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37091) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34933) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36012) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32774) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33854) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30616) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31695) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29537) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27378) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28458) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26299) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23062) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19824) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20903) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17666) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15507) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13349) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11190) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12270) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5794) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6874) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3636) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4715) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2557) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 398) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1478) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63776) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64855) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61617) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62697) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60538) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58380) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59459) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56221) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57301) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52984) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54063) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50825) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51905) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49746) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47588) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48667) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45429) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46509) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44350) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42192) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43271) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40033) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36796) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37875) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34637) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35717) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33558) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31400) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32479) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30321) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27083) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28162) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26004) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23845) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24925) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22766) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18449) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19529) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16291) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17370) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13053) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11974) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9816) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7657) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8737) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5499) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6578) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4420) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2261) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3341) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1182) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64560) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62401) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60243) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61322) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58084) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59164) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57005) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54847) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55926) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52688) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51609) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49451) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50530) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47292) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48372) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46213) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44055) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45134) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41896) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42976) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40817) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38659) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39738) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36500) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37580) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35421) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33263) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34342) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31104) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32184) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30025) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27867) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28946) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25708) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26788) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23550) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24629) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22471) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20312) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21392) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19233) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14916) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15996) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12758) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13837) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9520) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] ACT @ (0, 10600) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8441) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7362) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6283) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5204) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1966) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3045) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 887) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64264) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65344) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58868) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59948) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56710) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57789) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54551) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55631) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53472) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51314) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52393) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49155) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46997) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43759) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44839) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42680) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40522) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41601) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38363) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36205) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32967) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34047) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31888) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29730) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30809) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27571) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28651) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25413) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22175) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23255) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16779) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17859) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14621) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15700) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13542) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11383) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12463) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9225) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10304) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8146) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5987) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7067) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3829) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4908) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 591) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1671) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63969) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65048) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62890) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60731) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58573) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55335) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56415) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53177) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51018) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48860) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45622) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43464) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40226) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41306) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39147) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36989) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38068) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34830) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35910) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31593) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32672) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29434) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30514) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28355) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26197) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27276) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24038) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22959) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21880) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18642) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19722) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16484) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17563) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15405) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 13246) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14326) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11088) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12167) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10009) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7850) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8930) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5692) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6771) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4613) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2454) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3534) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 296) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1375) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62594) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63674) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60436) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61515) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59357) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57198) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58278) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55040) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53961) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51802) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52882) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49644) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47485) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46406) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44248) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45327) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42089) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41010) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39931) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36693) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35614) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33456) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34535) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31297) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32377) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30218) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28060) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25901) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26981) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24822) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22664) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23743) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20505) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19426) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17268) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18347) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15109) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12951) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14030) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11872) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9713) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10793) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7555) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8634) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6476) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] ACT @ (4, 4317) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5397) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2159) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3238) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64457) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62299) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59061) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56903) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57982) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55824) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53665) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54745) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51507) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48269) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49349) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46111) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47190) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43952) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42873) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40715) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41794) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38556) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39636) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37477) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35319) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36398) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34240) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32081) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 29923) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31002) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27764) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28844) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26685) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24527) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25606) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22368) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23448) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21289) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20210) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16972) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18052) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15893) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13735) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14814) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11576) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12656) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9418) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10497) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7260) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4022) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5101) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2943) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 784) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1864) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 65241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60924) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62004) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58766) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55528) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53370) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54449) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52291) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50132) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51212) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47974) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49053) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44736) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42578) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43657) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40419) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41499) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39340) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38261) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35023) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36103) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33944) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31786) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32865) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29627) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30707) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28548) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26390) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27469) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24231) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25311) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20994) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22073) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18835) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19915) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17756) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15598) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16677) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13439) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14519) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12360) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10202) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11281) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8043) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9123) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5885) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6964) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2647) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3727) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 489) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1568) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64946) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62787) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63867) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60629) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61708) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59550) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57391) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58471) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55233) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56312) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51995) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49837) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50916) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48758) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46599) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47679) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44441) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45520) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43362) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41203) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42283) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39045) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40124) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36886) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37966) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35807) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33649) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34728) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31490) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32570) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30411) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28253) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29332) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27174) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25015) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22857) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23936) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20698) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19619) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17461) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18540) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15302) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16382) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14223) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12065) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13144) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8827) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6669) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] ACT @ (4, 7748) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5590) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4510) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 2352) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3431) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1273) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64650) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62492) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63571) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61413) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59254) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53858) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54938) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51700) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52779) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50621) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48462) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49542) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46304) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47383) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45225) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43066) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44146) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40908) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41987) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39829) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37670) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35512) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36591) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33353) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34433) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32274) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30116) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27957) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29037) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26878) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24720) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25799) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23641) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21482) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19324) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20403) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17165) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18245) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16086) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13928) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15007) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11769) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12849) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10690) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8532) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9611) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7453) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5294) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 977) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2057) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65434) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63276) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58959) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60038) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57880) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55721) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53563) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54642) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52484) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50325) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51405) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48167) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49246) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47088) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44929) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46009) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42771) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43850) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41692) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39533) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40613) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37375) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38454) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36296) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35217) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31979) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33058) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29820) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30900) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28741) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26583) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27662) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24424) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25504) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23345) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21187) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22266) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19028) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17949) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15791) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16870) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13632) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14712) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12553) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10395) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11474) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 8236) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9316) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7157) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4999) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6078) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2840) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3920) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1761) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 682) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62980) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64060) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60822) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61901) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59743) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57584) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58664) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55426) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56505) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54347) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52188) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53268) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50030) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51109) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48951) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46792) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47872) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44634) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45713) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43555) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41396) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42476) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39238) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40317) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38159) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36000) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37080) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33842) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34921) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32763) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30604) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28446) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29525) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27367) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23050) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24129) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20891) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21971) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19812) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17654) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18733) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15495) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16575) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14416) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12258) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13337) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10099) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11179) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9020) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6862) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] ACT @ (4, 4703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5783) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3624) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> +[ 4500 ps] ACT @ (0, 1466) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2545) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64843) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 387) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63764) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61606) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62685) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59447) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60527) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57289) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58368) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56210) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54051) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51893) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52972) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 50814) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48655) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49735) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46497) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47576) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45418) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43259) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41101) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42180) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40022) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37863) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38943) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35705) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36784) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34626) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32467) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33547) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30309) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31388) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29230) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27071) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28151) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24913) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22754) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23834) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21675) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19517) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20596) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18438) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15200) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11962) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13042) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7646) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5487) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3329) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4408) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2250) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 91) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63469) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64548) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61310) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62390) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60231) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58073) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55914) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56994) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53756) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54835) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52677) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50518) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51598) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48360) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49439) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47281) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45122) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46202) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42964) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44043) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41885) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39726) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37568) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38647) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36489) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34330) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35410) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32172) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33251) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31093) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28934) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30014) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26776) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27855) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25697) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23538) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24618) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21380) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22459) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19221) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20301) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18142) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15984) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17063) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13825) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14905) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12746) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10588) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11667) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8429) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3033) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4113) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1954) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65332) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 875) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64253) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59936) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61015) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57777) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58857) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56698) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54540) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55619) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52381) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53461) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50223) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51302) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49144) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46985) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48065) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44827) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 43748) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41589) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42669) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39431) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40510) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38352) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37273) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34035) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35114) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32956) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30797) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31877) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28639) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29718) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27560) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25401) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23243) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24322) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22164) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20005) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21085) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17847) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18926) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15688) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16768) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14609) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12451) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13530) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10292) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11372) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9213) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7055) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8134) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4896) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5976) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3817) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2738) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1659) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 580) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] ACT @ (7, 65036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62879) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 63957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] ACT @ (4, 61799) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 62878) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] ACT @ (3, 61799) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60720) -> [ 1500 ps] WR @ (3, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59641) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 60720) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58562) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 58561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57483) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 57482) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 56403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55324) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54245) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 55324) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 54244) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53166) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 53165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52087) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51007) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 52086) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 51007) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49928) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48849) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 49928) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 48848) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47770) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46690) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47769) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 46690) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45611) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 45611) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44532) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43453) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 44532) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 43452) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42374) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41294) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 42373) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 41294) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40215) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 40215) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38057) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38056) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36978) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35898) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 36977) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35898) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34819) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 34819) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33740) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32661) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 33740) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 32660) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31582) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30502) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 31581) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30502) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29423) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 29423) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28344) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27265) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 28344) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 27264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26186) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 26185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 25106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 24027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22948) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21869) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 22948) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 21868) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20790) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19710) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20789) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 19710) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18631) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 18631) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17552) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16473) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 17552) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 16472) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15394) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14314) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 15393) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14314) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13235) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12156) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 13235) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 12155) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11077) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11076) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9998) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8918) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 9997) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 8918) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6760) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 7839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 6759) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5681) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 5680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4602) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 4601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 3522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1364) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 2443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 1363) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 285) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 63662) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 64741) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 61503) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 62583) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 60424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 58266) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59345) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 56107) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 57187) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 55028) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 52870) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 53949) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 50711) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 51791) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 49632) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 47474) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 48553) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 45315) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 46395) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 43157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 44236) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 42078) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 39919) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 40999) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 37761) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38840) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 36682) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 34523) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35603) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32365) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 33444) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 31286) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 29127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30207) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 26969) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 28048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 25890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 23731) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 24811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 21573) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 22652) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 20494) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 18335) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19415) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 16177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 17256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 15098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 12939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 14019) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 10781) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11860) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 8622) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 9702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 7543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 5385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 6464) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 3226) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 4306) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 2147) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 65525) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 1068) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63366) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 64446) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 62287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 60129) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 61208) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57970) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 59050) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 56891) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 54733) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 55812) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 52574) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 53654) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 51495) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 49337) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 50416) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 48258) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 46099) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 43941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 45020) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 41782) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 42862) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39624) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 40703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 38545) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 36386) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 37466) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 34228) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 35307) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 33149) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 30990) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32070) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 28832) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 29911) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 27753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 25594) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 26674) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 23436) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 24515) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 22357) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 21278) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] ACT @ (3, 18040) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 19119) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 16961) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 14802) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 15882) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 12644) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 13723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 11565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 9406) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 10486) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 7248) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 8327) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 5089) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 6169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 4010) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 1852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 2931) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 65229) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 773) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 64150) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 61992) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59833) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 60913) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 58754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 56596) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57675) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 54437) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 55517) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 53358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 51200) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 52279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 49041) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 50121) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47962) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 45804) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 46883) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 43645) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 44725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 42566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 40408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 41487) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38249) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39329) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 36091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 37170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35012) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 32853) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 33933) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30695) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 31774) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 29616) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 27457) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 28537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 25299) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 26378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 24220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 22061) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 23141) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19903) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 18824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 16665) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 17745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 14507) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 15586) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 13428) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11269) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 12349) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 9111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 10190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 8032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 5873) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 6953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] ACT @ (5, 2852) -> [ 1500 ps] WR @ (7, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 1773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 1500 ps] ACT @ (0, 1773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 65150) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 694) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61913) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60834) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59754) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56517) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57596) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55438) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54358) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53279) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51121) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52200) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50042) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48962) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47883) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45725) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44646) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43566) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42487) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40329) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39250) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38170) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34933) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36012) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33854) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32774) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 30616) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31695) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27378) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28458) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26299) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25220) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24141) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21982) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23062) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20903) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19824) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18745) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16586) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17666) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15507) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14428) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13349) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11190) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12270) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9032) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5794) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6874) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4715) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3636) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2557) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 398) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1478) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64855) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63776) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] ACT @ (4, 61617) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62697) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60538) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58380) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59459) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57301) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56221) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55142) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52984) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54063) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51905) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50825) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49746) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47588) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48667) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45429) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42192) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40033) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36796) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37875) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35717) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34637) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33558) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31400) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32479) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30321) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29241) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 27083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26004) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23845) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24925) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22766) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21687) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18449) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19529) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17370) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16291) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 13053) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11974) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10895) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7657) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8737) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6578) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5499) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4420) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2261) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3341) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1182) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64560) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62401) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61322) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60243) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 58084) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59164) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57005) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54847) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55926) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52688) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51609) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49451) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50530) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48372) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47292) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46213) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] ACT @ (0, 44055) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45134) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42976) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41896) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40817) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38659) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39738) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37580) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36500) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35421) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33263) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34342) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32184) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31104) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30025) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27867) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28946) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26788) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25708) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 23550) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24629) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22471) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20312) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21392) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19233) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18154) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14916) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15996) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13837) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12758) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9520) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10600) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8441) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7362) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6283) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4124) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5204) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3045) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1966) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 887) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64264) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65344) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62106) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58868) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59948) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57789) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56710) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 54551) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55631) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53472) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51314) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52393) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49155) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45918) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46997) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44839) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43759) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42680) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40522) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41601) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39443) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38363) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37284) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35126) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36205) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34047) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32967) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31888) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29730) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30809) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28651) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27571) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24334) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25413) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23255) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22175) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 20017) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21096) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16779) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17859) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15700) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14621) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13542) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11383) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12463) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10304) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9225) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8146) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5987) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7067) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4908) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3829) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 591) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1671) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63969) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60731) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58573) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55335) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56415) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54256) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53177) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] ACT @ (4, 51018) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52098) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49939) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47781) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48860) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46702) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45622) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44543) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42385) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43464) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41306) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40226) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36989) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38068) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35910) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34830) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31593) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32672) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30514) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29434) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26197) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27276) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25118) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24038) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22959) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20801) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21880) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19722) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18642) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 16484) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17563) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15405) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13246) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14326) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12167) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11088) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10009) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7850) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8930) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6771) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5692) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4613) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2454) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3534) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1375) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 296) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62594) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63674) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61515) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60436) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59357) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57198) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58278) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56119) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55040) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53961) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51802) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52882) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49644) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 47485) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46406) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44248) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45327) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42089) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41010) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38852) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39931) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36693) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35614) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33456) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34535) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32377) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31297) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30218) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28060) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29139) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26981) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25901) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24822) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22664) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23743) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20505) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19426) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17268) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18347) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15109) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 12951) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14030) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11872) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9713) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10793) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8634) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7555) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6476) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4317) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5397) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3238) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2159) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1080) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64457) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63378) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62299) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61220) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59061) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56903) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53665) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51507) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 50428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] ACT @ (4, 48269) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49349) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46111) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 43952) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42873) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40715) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41794) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39636) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38556) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37477) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35319) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36398) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34240) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33160) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32081) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29923) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31002) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28844) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27764) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26685) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24527) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25606) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23448) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22368) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21289) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19131) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 20210) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18052) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16972) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15893) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13735) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14814) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12656) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11576) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 9418) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10497) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6180) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7260) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5101) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4022) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2943) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1864) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65241) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64162) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63083) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60924) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62004) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59845) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58766) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57687) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55528) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54449) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53370) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50132) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49053) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47974) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44736) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42578) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 40419) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41499) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39340) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37182) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38261) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36103) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35023) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33944) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31786) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32865) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30707) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29627) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28548) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26390) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27469) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25311) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24231) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20994) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22073) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19915) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18835) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17756) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15598) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16677) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14519) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13439) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12360) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10202) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11281) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9123) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8043) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] ACT @ (0, 5885) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6964) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4806) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2647) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3727) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1568) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 489) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64946) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62787) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63867) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61708) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60629) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59550) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57391) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58471) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56312) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55233) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51995) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50916) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49837) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48758) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46599) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47679) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45520) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44441) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43362) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41203) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42283) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40124) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39045) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 36886) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37966) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35807) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33649) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34728) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 32570) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31490) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30411) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28253) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29332) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27174) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26094) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25015) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22857) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23936) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20698) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19619) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17461) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18540) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16382) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15302) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14223) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12065) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13144) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10986) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9906) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8827) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6669) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7748) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5590) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4510) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 2352) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3431) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1273) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64650) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63571) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62492) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61413) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59254) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57096) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53858) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54938) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52779) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51700) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50621) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48462) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49542) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47383) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46304) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45225) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43066) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44146) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41987) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40908) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39829) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37670) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36591) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35512) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 33353) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34433) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32274) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30116) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29037) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27957) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26878) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24720) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25799) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23641) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22561) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21482) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19324) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20403) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18245) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17165) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16086) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13928) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15007) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12849) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11769) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10690) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8532) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9611) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7453) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6373) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5294) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3136) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2057) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 977) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 64355) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65434) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63276) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61117) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62197) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60038) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58959) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57880) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56801) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55721) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 1500 ps] ACT @ (0, 53563) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54642) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52484) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50325) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51405) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49246) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48167) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47088) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44929) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46009) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43850) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42771) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41692) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39533) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40613) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38454) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37375) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 36296) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34137) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35217) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33058) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31979) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 29820) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30900) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28741) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26583) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27662) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25504) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24424) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23345) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21187) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22266) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20108) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19028) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17949) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15791) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16870) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14712) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13632) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12553) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10395) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11474) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9316) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8236) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4999) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6078) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3920) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2840) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1761) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65139) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 682) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64060) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62980) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 60822) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61901) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59743) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57584) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58664) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56505) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55426) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54347) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52188) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53268) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51109) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50030) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48951) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46792) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47872) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45713) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44634) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 43555) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41396) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42476) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40317) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39238) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38159) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36000) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34921) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33842) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32763) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30604) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31684) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29525) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28446) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] ACT @ (4, 26287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27367) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25208) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23050) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24129) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21971) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20891) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19812) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17654) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18733) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16575) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15495) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14416) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12258) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13337) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11179) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10099) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9020) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6862) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5783) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4703) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3624) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1466) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2545) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 387) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64843) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63764) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61606) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62685) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60527) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59447) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 57289) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58368) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56210) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54051) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52972) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51893) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 50814) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48655) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49735) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47576) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46497) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45418) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43259) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41101) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40022) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37863) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38943) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36784) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35705) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34626) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32467) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33547) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31388) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30309) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29230) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27071) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28151) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25992) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24913) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 22754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23834) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19517) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20596) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18438) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17358) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14121) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15200) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13042) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11962) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8725) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9804) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7646) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6566) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5487) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3329) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4408) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2250) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1170) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 91) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63469) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64548) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62390) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61310) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60231) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58073) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56994) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55914) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 53756) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54835) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52677) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50518) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51598) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49439) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48360) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47281) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45122) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46202) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44043) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42964) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41885) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39726) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40806) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38647) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37568) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36489) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34330) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35410) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33251) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32172) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31093) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28934) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30014) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27855) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26776) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25697) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23538) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24618) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22459) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21380) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 19221) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20301) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15984) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17063) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14905) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13825) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12746) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10588) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11667) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9509) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8429) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7350) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5192) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3033) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 1954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65332) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 875) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64253) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63173) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61015) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59936) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] ACT @ (4, 57777) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58857) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56698) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54540) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55619) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53461) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52381) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (0, 50223) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51302) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49144) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46985) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48065) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44827) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43748) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41589) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42669) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40510) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39431) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38352) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36193) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37273) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35114) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34035) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32956) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30797) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31877) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29718) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28639) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27560) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25401) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24322) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23243) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22164) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 20005) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21085) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18926) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17847) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 15688) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16768) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14609) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12451) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13530) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11372) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10292) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9213) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7055) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8134) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5976) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4896) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3817) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1659) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2738) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 580) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] ACT @ (7, 65036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62879) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61799) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 62878) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> +[ 1500 ps] ACT @ (3, 61799) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59641) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 60720) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58562) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (7, 58561) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57483) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56403) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57482) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 56403) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55324) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54245) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 55324) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 54244) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53166) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] ACT @ (7, 53165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52087) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51007) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 52086) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 51007) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49928) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48849) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 49928) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 48848) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47770) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46690) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47769) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 46690) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45611) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 45611) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44532) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43453) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 44532) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 43452) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42374) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41294) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 42373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 41294) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40215) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 40215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39136) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38057) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39136) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38056) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36978) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35898) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 36977) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35898) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34819) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] ACT @ (3, 34819) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33740) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32661) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 33740) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 32660) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31582) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30502) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 31581) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30502) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29423) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 29423) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28344) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27265) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 28344) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 27264) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26186) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25106) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 26185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 25106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24027) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 24027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22948) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21869) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 22948) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 21868) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20790) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19710) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20789) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19710) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18631) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] ACT @ (3, 18631) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17552) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16473) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 17552) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 16472) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15394) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14314) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 15393) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14314) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 13235) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12156) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 13235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 12155) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11077) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (7, 11076) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9998) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8918) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 9997) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 8918) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7839) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6760) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 7839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 6759) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5681) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (7, 5680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4602) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3522) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 4601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 3522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2443) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1364) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 2443) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 1363) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 285) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 284) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 63662) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 64741) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 62583) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 61503) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 60424) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 58266) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 59345) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 57187) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 56107) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 55028) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 52870) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 53949) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 51791) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 50711) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 49632) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 47474) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 48553) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 46395) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 45315) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] ACT @ (3, 43157) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 44236) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 42078) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 39919) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 40999) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38840) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 37761) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 36682) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 34523) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35603) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 33444) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32365) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 31286) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 29127) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 30207) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 28048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 26969) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 25890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 23731) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 24811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 22652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 21573) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 20494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 18335) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 17256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 16177) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 15098) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 12939) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14019) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11860) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 10781) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] ACT @ (7, 8622) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 9702) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 7543) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 5385) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 6464) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 4306) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 3226) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 2147) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 65525) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 1068) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 64446) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 63366) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 62287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 60129) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 61208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 59050) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 57970) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 56891) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 54733) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 55812) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 53654) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 52574) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 51495) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 49337) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 50416) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 48258) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47178) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 46099) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 43941) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 45020) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 42862) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 41782) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] ACT @ (3, 39624) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 40703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 38545) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 36386) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 37466) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 35307) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 34228) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 33149) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 30990) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32070) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 29911) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 28832) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 27753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 26674) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 25594) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] ACT @ (3, 23436) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 24515) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 22357) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20198) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 21278) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 19119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 18040) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 16961) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 14802) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 15882) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 13723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 12644) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 11565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 9406) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 10486) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 8327) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 7248) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] ACT @ (7, 5089) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 6169) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 4010) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 1852) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 2931) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 65229) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 64150) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 61992) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 63071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 60913) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 59833) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 58754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 56596) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 57675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 55517) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 54437) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 53358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 51200) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 52279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 50121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 49041) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 47962) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 45804) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 46883) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 44725) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 43645) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 42566) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 40408) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 41487) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 39329) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 38249) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] ACT @ (3, 36091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 37170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 35012) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 32853) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 33933) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 31774) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 30695) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 29616) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 27457) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 28537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 26378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 25299) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 24220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (7, 22061) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 23141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 20982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 19903) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 18824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 16665) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 17745) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 15586) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 14507) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 13428) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 11269) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 12349) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 10190) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 9111) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (3) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 8032) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 162744 ns +Time Done: 256344 ns +Average Rate: 40 ns/request +-------------------------------- + + +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (7) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (7, 5873) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (3, 6953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 256446000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 258578 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:25 ; elapsed = 00:36:51 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1711 ; free virtual = 10759 +## quit +INFO: xsimkernel Simulation Memory Usage: 236636 KB (Peak: 294432 KB), Simulation CPU Usage: 2206520 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 18:44:25 2025... diff --git a/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_two_lanes_bus_delay_0.log b/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_two_lanes_bus_delay_0.log new file mode 100644 index 0000000..cca0d2d --- /dev/null +++ b/testbench/xsim/test_6_000_ddr3_1_500_odelay_1_lanes_two_lanes_bus_delay_0.log @@ -0,0 +1,15528 @@ +ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) + +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3 +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_module +INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib +INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim +Vivado Simulator v2022.1 +Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. +Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip -L xpm --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log +Multi-threading is on. Using 14 slave threads. +Starting static elaboration +Pass Through NonSizing Optimizer +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:214] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:215] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:217] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:218] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:219] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:220] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:221] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:223] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:338] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:339] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:341] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:342] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:343] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:344] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:345] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:347] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:479] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:480] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:482] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:483] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:484] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:485] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:757] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:758] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:760] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:761] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:762] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:763] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:764] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:912] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:913] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:915] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:916] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:917] +WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:918] +Completed static elaboration +Starting simulation data flow analysis +Completed simulation data flow analysis +Time Resolution for simulation is 1ps +Compiling module xil_defaultlib.ddr3_controller(CONTROLLER_CLK_P... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.OBUFDS +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... +Compiling module unisims_ver.OBUF(SLEW="FAST") +Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... +Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") +Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... +Compiling module unisims_ver.IDELAYCTRL_default +Compiling module xil_defaultlib.ddr3_phy(CONTROLLER_CLK_PERIOD=6... +Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=6... +Compiling module xil_defaultlib.ddr3_default +Compiling module xil_defaultlib.ddr3_dimm_micron_sim +Compiling module xil_defaultlib.glbl +Built simulation snapshot ddr3_dimm_micron_sim + +****** xsim v2022.1 (64-bit) + **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 + **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 + ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. + +source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl +# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} +Time resolution is 1 ps +source cmd.tcl +## set curr_wave [current_wave_config] +## if { [string length $curr_wave] == 0 } { +## if { [llength [get_objects]] > 0} { +## add_wave / +## set_property needs_save false [current_wave_config] +## } else { +## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." +## } +## } +## run -all + +CONTROLLER PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +ECC_ENABLE = 0 +ECC_INFORMATION_BITS = 11 +WB_ERROR = 1 + +CONTROLLER LOCALPARAMS: +----------------------------- +wb_addr_bits = 26 +wb_data_bits = 128 +wb_sel_bits = 16 +wb2_sel_bits = 4 +DQ_BITS = 8 +row_bank_col = 1 + +COMMAND SLOTS: +----------------------------- +READ_SLOT = 3 +WRITE_SLOT = 1 +ACTIVATE_SLOT = 0 +PRECHARGE_SLOT = 2 +REMAINING_SLOT = 0 + +DELAYS: +----------------------------- +CL = 9 +CWL = 7 +PRECHARGE_TO_ACTIVATE_DELAY = 2 +ACTIVATE_TO_WRITE_DELAY = 2 +ACTIVATE_TO_READ_DELAY = 1 +ACTIVATE_TO_PRECHARGE_DELAY = 5 +ACTIVATE_TO_ACTIVATE_DELAY = 1 +READ_TO_WRITE_DELAY = 2 +READ_TO_READ_DELAY = 0 +READ_TO_PRECHARGE_DELAY = 1 +WRITE_TO_WRITE_DELAY = 0 +WRITE_TO_READ_DELAY = 3 +WRITE_TO_PRECHARGE_DELAY = 4 +STAGE2_DATA_DEPTH = 2 +READ_ACK_PIPE_WIDTH = 7 + + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- + +DDR3 TOP PARAMETERS: +----------------------------- +CONTROLLER_CLK_PERIOD = 6000 +DDR3_CLK_PERIOD = 1500 +ROW_BITS = 16 +COL_BITS = 10 +BA_BITS = 3 +BYTE_LANES = 2 +AUX_WIDTH = 16 +WB2_ADDR_BITS = 7 +WB2_DATA_BITS = 32 +MICRON_SIM = 1 +ODELAY_SUPPORTED = 1 +SECOND_WISHBONE = 0 +WB_ERROR = 1 +SKIP_INTERNAL_TEST = 0 +ECC_ENABLE = 0 +DIC = 0 +RTT_NOM = 3 +SELF_REFRESH = 0 +DUAL_RANK_DIMM = 0 +End of DDR3 TOP PARAMETERS +----------------------------- +ddr3_dimm_micron_sim.ddr3_0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. +[x ps] MRS -> [100756 ps] MRS -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.reset at time 468100.0 ps WARNING: 200 us is required before RST_N goes inactive. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.cmd_task at time 1479856.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. +[ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_0.cmd_task: at time 1845856.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] ZQC -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14389012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14389012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14395012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14395012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14401012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14401012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14407012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14407012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14413012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14413012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14419012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14419012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14425012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14425012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14431012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14431012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14437012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14437012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14443012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14443012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14449012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14449012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14455012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14455012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14461012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14461012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14467012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14467012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14473012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14473012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14479012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14479012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14485012.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14485012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14521012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14527012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14533012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14539012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14545012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14551012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14557012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14563012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14569012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14575012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14581012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14587012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14593012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14599012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14605012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14611012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14617012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14647012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14653012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14659012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14665012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14671012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14677012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14683012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14689012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14695012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14701012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14707012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14713012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14719012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14725012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14731012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14737012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14743012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14773012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14779012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14785012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14791012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14797012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14803012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14809012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14815012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14821012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14827012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14833012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14839012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14845012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14851012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14857012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14863012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14869012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14899012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14905012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14911012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14917012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14923012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14929012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14935012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14941012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14947012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14953012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14959012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14965012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14971012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14977012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14983012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14989012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 14995012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15025012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15031012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15037012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15043012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15049012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15055012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15061012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15067012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15073012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15079012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15085012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15091012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15097012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15103012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15109012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15115012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15121012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15151012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15151606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15157012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15157606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15163012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15163606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15169012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15169606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15175012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15175606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15181012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15181606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15187012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15187606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15193012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15193606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15199012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15199606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15205012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15205606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15211012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15211606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15217012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15217606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15223012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15223606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15229012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15229606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15235012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15235606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15241012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15241606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15247012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15247606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15277012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15277606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15283012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15283606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15289012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15289606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15295012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15295606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15301012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15301606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15307012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15307606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15313012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15313606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15319012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15319606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15325012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15325606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15331012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15331606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15337012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15337606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15343012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15343606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15349012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15349606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15355012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15355606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15361012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15361606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15367012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15367606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15373012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.main: at time 15373606.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15403012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15403636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15409012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15409636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15415012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15415636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15421012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15421636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15427012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15427636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15433012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15433636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15439012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15439636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15445012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15445636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15451012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15451636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15457012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15457636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15463012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15463636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15469012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15469636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15475012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15475636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15481012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15481636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15487012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15487636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15493012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15493636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15499012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15499636.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15535012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15535714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15541012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15541714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15547012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15547714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15553012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15553714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15559012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15559714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15565012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15565714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15571012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15571714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15577012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15577714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15583012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15583714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15589012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15589714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15595012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15595714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15601012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15601714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15607012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15607714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15613012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15613714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15619012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15619714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15625012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15625714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15631012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15631714.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15661012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15667012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15673012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15679012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15685012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15691012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15697012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15703012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15709012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15715012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15721012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15727012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15733012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15739012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15745012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15751012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15757012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15787012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15793012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15799012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15805012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15811012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15817012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15823012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15829012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15835012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15841012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15847012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15853012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15859012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15865012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15871012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15877012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15883012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15913012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15919012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15925012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15931012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15937012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15943012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15949012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15955012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15961012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15967012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15973012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15979012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15985012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15991012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 15997012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16003012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16009012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16039012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16045012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16051012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16057012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16063012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16069012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16075012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16081012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16087012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16093012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16099012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16105012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16111012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16117012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16123012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16129012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16135012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16165012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16171012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16177012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16183012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16189012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16195012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16201012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16207012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16213012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16219012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16225012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16231012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16237012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16243012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16249012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16255012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16261012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16291012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16297012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16303012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16309012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16315012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16321012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16327012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16333012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16339012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16345012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16351012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16357012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16363012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16369012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16375012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16381012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16387012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16417012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16418356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16423012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16424356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16429012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16430356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16435012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 16436356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16441012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16442356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16447012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16448356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16453012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16454356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16459012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16460356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16465012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 16466356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16471012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16472356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16477012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16478356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16483012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16484356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16489012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16490356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16495012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 16496356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16501012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16502356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16507012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16508356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16513012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16514356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16543012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16544356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16549012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16550356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16555012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 16556356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16561012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16562356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16567012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16568356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16573012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16574356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16579012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16580356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16585012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 16586356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16591012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16592356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16597012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16598356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16603012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16604356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16609012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16610356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16615012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 16616356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16621012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16622356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16627012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16628356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16633012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16634356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16639012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 16640356.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16669012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16670416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16675012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16676416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16681012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16682416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16687012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16688416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16693012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16694416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16699012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16700416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16705012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16706416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16711012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16712416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16717012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16718416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16723012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16724416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16729012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16730416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16735012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16736416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16741012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16742416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16747012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16748416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16753012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16754416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16759012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16760416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16765012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16766416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16801012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16802416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16807012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16808416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16813012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16814416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16819012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16820416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16825012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16826416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16831012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16832416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16837012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16838416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16843012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16844416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16849012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16850416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16855012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16856416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16861012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16862416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16867012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16868416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16873012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16874416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16879012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16880416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16885012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16886416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16891012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16892416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16897012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16898416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16927012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16928416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16933012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16934416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16939012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16940416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16945012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16946416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16951012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16952416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16957012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16958416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16963012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16964416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16969012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16970416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16975012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16976416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16981012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16982416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16987012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16988416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16993012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16994416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 16999012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17000416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17005012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17006416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17011012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17012416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17017012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17018416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17023012.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17024416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17054416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17060416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17066416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17072416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17078416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17084416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17090416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17096416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17102416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17108416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17114416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17120416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17126416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17132416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17138416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17144416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17150416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17180416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17186416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17192416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17198416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17204416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17210416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17216416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17222416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17228416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17234416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17240416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17246416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17252416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17258416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17264416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17270416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17276416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17306416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17312416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17318416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17324416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17330416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17336416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17342416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17348416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17354416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17360416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17366416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17372416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17378416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17384416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17390416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17396416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17402416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17432416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17438416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17444416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17450416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17456416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17462416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17468416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17474416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17480416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17486416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17492416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17498416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17504416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17510416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17516416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17522416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17528416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17558416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17564416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17570416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17576416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17582416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17588416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17594416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17600416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17606416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17612416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17618416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17624416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17630416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17636416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17642416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17648416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17654416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 17683606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17684416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17689606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17690416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17695606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17696416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17701606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17702416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17707606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17708416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 17713606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17714416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17719606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17720416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17725606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17726416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17731606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17732416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17737606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17738416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 17743606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17744416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17749606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17750416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17755606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17756416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17761606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17762416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17767606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17768416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 17773606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17774416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17779606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17780416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17809606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17810416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17815606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17816416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17821606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17822416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17827606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17828416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 17833606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17834416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17839606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17840416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17845606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17846416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17851606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17852416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17857606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17858416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 17863606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17864416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17869606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17870416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17875606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17876416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17881606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17882416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17887606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17888416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 17893606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17894416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17899606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17900416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 17905606.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17906416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17935636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17936416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17941636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17942416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17947636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17948416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17953636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17954416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17959636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17960416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17965636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17966416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17971636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17972416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17977636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17978416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17983636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17984416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17989636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17990416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17995636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 17996416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18001636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18002416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18007636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18008416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18013636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18014416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18019636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18020416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18025636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18026416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18031636.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18032416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18067714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18068416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18073714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18074416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18079714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18080416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18085714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18086416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18091714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18092416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18097714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18098416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18103714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18104416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18109714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18110416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18115714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18116416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18121714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18122416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18127714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18128416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18133714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18134416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18139714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18140416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18145714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18146416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18151714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18152416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18157714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18158416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18163714.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18164416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18194416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18200416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18206416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18212416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18218416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18224416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18230416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18236416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18242416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18248416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18254416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18260416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18266416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18272416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18278416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18284416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18290416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18320416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18326416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18332416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18338416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18344416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18350416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18356416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18362416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18368416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18374416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18380416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18386416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18392416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18398416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18404416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18410416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18416416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18446416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18452416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18458416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18464416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18470416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18476416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18482416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18488416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18494416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18500416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18506416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18512416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18518416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18524416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18530416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18536416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18542416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18572416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18578416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18584416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18590416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18596416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18602416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18608416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18614416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18620416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18626416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18632416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18638416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18644416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18650416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18656416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18662416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18668416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18698416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18704416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18710416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18716416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18722416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18728416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18734416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18740416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18746416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18752416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18758416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18764416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18770416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18776416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18782416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18788416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18794416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18824416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18830416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18836416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18842416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18848416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18854416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18860416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18866416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18872416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18878416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18884416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18890416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18896416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18902416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18908416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18914416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18920416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 18950356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18950416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 18956356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18956416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 18962356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18962416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 18968356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18968416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 18974356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18974416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 18980356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18980416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 18986356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18986416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 18992356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18992416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 18998356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 18998416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19004356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19004416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19010356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19010416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 19016356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19016416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19022356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19022416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19028356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19028416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19034356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19034416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19040356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19040416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 19046356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19046416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 19076356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19076416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19082356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19082416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19088356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19088416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19094356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19094416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19100356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19100416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 19106356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19106416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19112356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19112416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19118356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19118416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19124356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19124416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19130356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19130416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 19136356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19136416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19142356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19142416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19148356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19148416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19154356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19154416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19160356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19160416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.main: at time 19166356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19166416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.main: at time 19172356.0 ps WARNING: tWLH violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19172416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19202416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19202416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19208416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19208416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19214416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19214416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19220416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19220416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19226416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19226416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19232416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19232416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19238416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19238416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19244416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19244416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19250416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19250416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19256416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19256416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19262416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19262416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19268416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19268416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19274416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19274416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19280416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19280416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19286416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19286416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19292416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19292416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> [ 1500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19298416.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. +ddr3_dimm_micron_sim.ddr3_0.dqs_pos_timing_check: at time 19298416.0 ps WARNING: tWLS violation on DQS bit 1 positive edge. Indeterminate CK capture is possible. +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] MRS -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 101) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 102) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 104) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 105) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 107) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 109) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 110) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 112) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 114) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 116) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 117) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 119) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 120) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 122) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 124) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 127) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 129) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 132) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 134) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 135) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 137) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 139) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 140) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 142) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 144) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 146) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 147) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 148) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 149) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 151) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 152) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 153) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 154) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 155) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 156) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 157) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 158) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 159) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 161) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 162) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 163) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 164) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 166) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 167) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 168) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 169) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 171) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 172) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 174) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 175) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 176) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 178) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 179) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 181) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 183) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 184) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 186) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 187) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 188) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 191) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 193) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 196) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 198) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 199) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 101) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 102) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 104) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 105) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 107) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 109) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 110) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 112) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 114) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 116) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 120) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 122) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 129) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 132) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 134) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 135) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 136) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 140) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 144) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 146) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 148) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 149) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 151) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 152) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 153) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 155) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 156) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 158) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 159) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 161) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 163) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 164) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 166) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 167) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 168) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 171) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 172) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 174) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 176) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 179) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 181) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 182) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 183) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 184) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 186) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 187) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 188) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 191) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 195) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 196) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 199) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 952) -> [ 4500 ps] ACT @ (2, 0) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] ACT @ (1, 0) -> +[ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> +[ 4500 ps] ACT @ (2, 0) -> [ 1500 ps] WR @ (1, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 944) -> [ 4500 ps] ACT @ (3, 0) -> [ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] ACT @ (4, 0) -> [ 1500 ps] WR @ (3, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] ACT @ (5, 0) -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> [ 4500 ps] ACT @ (6, 0) -> +[ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> +[ 4500 ps] ACT @ (7, 0) -> [ 1500 ps] WR @ (6, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 952) -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] ACT @ (0, 1) -> [ 1500 ps] WR @ (7, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> +[ 4500 ps] ACT @ (1, 1) -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> +[ 1500 ps] ACT @ (2, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> [ 1500 ps] ACT @ (3, 0) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] ACT @ (4, 0) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] ACT @ (5, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 944) -> [ 1500 ps] ACT @ (6, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> +[ 1500 ps] ACT @ (7, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] ACT @ (0, 1) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 1) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: FIRST ROW +Number of Operations: 2304 +Time Started: 51864 ns +Time Done: 66648 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 32768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 1151, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000092f75e2592f6502592f5422592f43425, read data = 00000000000000000000000123456789 @ 66702000.0 ps +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 32768) -> [ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 952) -> [ 1500 ps] PRE @ (2) -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] ACT @ (2, 32768) -> [ 1500 ps] WR @ (1, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (2, 32768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] ACT @ (3, 32768) -> [ 1500 ps] WR @ (2, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 944) -> [ 4500 ps] ACT @ (4, 32768) -> [ 1500 ps] WR @ (3, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] ACT @ (5, 32768) -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> +[ 4500 ps] ACT @ (6, 32768) -> [ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 944) -> [ 4500 ps] ACT @ (7, 32768) -> [ 1500 ps] WR @ (6, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 32769) -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] ACT @ (1, 32769) -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> +[ 1500 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 32768) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (3, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32768) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (3, 32768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] ACT @ (5, 32768) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 1500 ps] ACT @ (6, 32768) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 1500 ps] ACT @ (7, 32768) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] ACT @ (0, 32769) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 32769) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: MIDDLE ROW +Number of Operations: 2304 +Time Started: 66648 ns +Time Done: 81474 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65535) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> FAILED: Address = 33555583, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000faf75ef5faf650f5faf542f5faf434f5, read data = 00000000000000000000000123456789 @ 81528000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] ACT @ (1, 65535) -> [ 1500 ps] WR @ (0, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 944) -> [ 4500 ps] ACT @ (2, 65535) -> [ 1500 ps] WR @ (1, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 968) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 992) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (1, 1008) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (1, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 8) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 24) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 48) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 952) -> [ 1500 ps] PRE @ (3) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (2, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 968) -> [ 4500 ps] ACT @ (3, 65535) -> [ 1500 ps] WR @ (2, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (2, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (2, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 952) -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] WR @ (3, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 968) -> [ 4500 ps] ACT @ (4, 65535) -> [ 1500 ps] WR @ (3, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (3, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (3, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 8) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 32) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 48) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 72) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 88) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 112) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 128) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 152) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 168) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 192) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 208) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 232) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 248) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 272) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 288) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 312) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 328) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 352) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 368) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 392) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 408) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 432) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 448) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 472) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 488) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 512) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 528) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 552) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 568) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 592) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 608) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 632) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 648) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 968) -> +[ 4500 ps] ACT @ (5, 65535) -> [ 1500 ps] WR @ (4, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 32) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] WR @ (5, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 48) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 65535) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 64) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 88) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 104) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 128) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 144) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 168) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 184) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 208) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 224) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 248) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 264) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 288) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 304) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 328) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 344) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 368) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 384) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 408) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 424) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 448) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 464) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 488) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 504) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 528) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 544) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 568) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 584) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 608) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 624) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 648) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 944) -> [ 4500 ps] ACT @ (6, 65535) -> +[ 1500 ps] WR @ (5, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 968) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 984) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (5, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1008) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (5, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 0) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 16) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 24) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 40) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 56) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 64) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 80) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 96) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 104) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 120) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 136) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 144) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 160) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 176) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 184) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 200) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 216) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 224) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 240) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 256) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 264) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 280) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 296) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 304) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 320) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 336) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 344) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 360) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 376) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 384) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 400) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 416) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 424) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 440) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 456) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 464) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 480) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 496) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 504) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 520) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 536) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 544) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 560) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 576) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 584) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 600) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 616) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 624) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 640) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 944) -> +[ 4500 ps] ACT @ (7, 65535) -> [ 1500 ps] WR @ (6, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 976) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 984) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1000) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (6, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (6, 1016) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 0) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 16) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 32) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 40) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 56) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 72) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 80) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 96) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 112) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 120) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 136) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 152) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 160) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 176) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 192) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 200) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 216) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 232) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 240) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 256) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 272) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 280) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 296) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 312) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 320) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 336) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 352) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 360) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 376) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 392) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 400) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 416) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 432) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 440) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 456) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 472) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 480) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 496) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 512) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 520) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 536) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 552) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 560) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 576) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 592) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 600) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 616) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 632) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 640) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 944) -> [ 4500 ps] ACT @ (0, 0) -> [ 1500 ps] WR @ (7, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 976) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (7, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 992) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1000) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (7, 1016) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 0) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 8) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 16) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 24) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 32) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 40) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 48) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 56) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 64) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 72) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 80) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 88) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 96) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 104) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 112) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 120) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 128) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 136) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 144) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 152) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 160) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 168) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 176) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 184) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 192) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 200) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 208) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 216) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 224) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 232) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 240) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 248) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 256) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 264) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 272) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 280) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 288) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 296) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 304) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 312) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 320) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 328) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 336) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 344) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 352) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 360) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 368) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 376) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 384) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 392) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 400) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 408) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 416) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 424) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 432) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 440) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 448) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 456) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 464) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 472) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 480) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 488) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 496) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 504) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 512) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 520) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 528) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 536) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 544) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 552) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 560) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 568) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 576) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 584) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 592) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 600) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 608) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 616) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 624) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 632) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 640) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 648) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] ACT @ (1, 0) -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 968) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 976) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 984) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 992) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 1000) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1008) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 1016) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65535) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 1500 ps] RD @ (0, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 968) -> [ 1500 ps] ACT @ (1, 65535) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 944) -> [ 1500 ps] ACT @ (2, 65535) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (1, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 992) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (1, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 8) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 24) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 48) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 64) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 88) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 104) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 128) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 144) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 168) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 184) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 208) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 224) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 248) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 264) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 288) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 304) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 328) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 344) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 368) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 384) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 408) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 424) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 448) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 464) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 488) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 504) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 528) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 544) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 568) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 584) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 608) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 624) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 648) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 944) -> +[ 1500 ps] ACT @ (3, 65535) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 968) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 984) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (2, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1008) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (2, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 0) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 24) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 40) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 64) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 80) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 104) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 120) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 144) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 160) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 184) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 200) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 224) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 240) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 264) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 280) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 304) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 320) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 344) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 360) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 384) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 400) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 424) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 440) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 464) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 480) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 504) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 520) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 544) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 560) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 584) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 600) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 624) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 640) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 944) -> [ 1500 ps] ACT @ (4, 65535) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 984) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1000) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (3, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (3, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 0) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 16) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 32) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 40) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 56) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 72) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 80) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 96) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 112) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 120) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (5, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (5, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] RD @ (6, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (6, 65535) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 136) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 152) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 160) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 176) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 192) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 200) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 216) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 232) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 240) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 256) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 272) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 280) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 296) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 312) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 320) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 336) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 352) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 360) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 376) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 392) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 400) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 416) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 432) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 440) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 456) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 472) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 480) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 496) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 512) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 520) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 536) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 552) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 560) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 576) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 592) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 600) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 616) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 632) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 640) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 944) -> [ 1500 ps] ACT @ (7, 65535) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 976) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (6, 992) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1000) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (6, 1016) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 8) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 16) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 32) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 48) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 56) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 72) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 88) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 96) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 112) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 128) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 136) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 152) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 168) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 176) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 192) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 208) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 216) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 232) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 248) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 256) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 272) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 288) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 296) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 312) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 328) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 336) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 352) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 368) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 376) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 392) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 408) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 416) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 432) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 448) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 456) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 472) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 488) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 496) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 512) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 528) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 536) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 552) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 568) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 576) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 592) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 608) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 616) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 632) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 648) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 944) -> [ 1500 ps] ACT @ (0, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 968) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 976) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 992) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (7, 1008) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (7, 1016) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 0) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 8) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 16) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 24) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 32) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 40) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 48) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 56) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 64) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 72) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 80) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 88) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 96) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 104) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 112) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 120) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 128) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 136) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 144) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 152) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 160) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 168) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 176) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 184) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 192) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 200) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 208) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 216) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 224) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 232) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 240) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 248) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 256) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 264) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 272) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 280) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 288) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 296) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 304) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 312) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 320) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 328) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 336) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 344) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 352) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 360) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 368) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 376) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 384) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 392) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 400) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 408) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 416) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 424) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 432) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 440) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 448) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 456) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 464) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 472) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 480) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 488) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 496) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 504) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 512) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 520) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 528) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 536) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 544) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 552) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 560) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 568) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 576) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 584) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 592) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 600) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 608) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 616) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 624) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 632) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 640) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 648) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] ACT @ (1, 0) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 968) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 976) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 984) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 992) -> +-------------------------------- +DONE TEST 1: LAST ROW +Number of Operations: 2304 +Time Started: 81474 ns +Time Done: 96288 ns +Average Rate: 6 ns/request +-------------------------------- + + +[ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1000) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1008) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 1016) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (5, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2852) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +FAILED: Address = 67108991, expected data = 000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000521a8fa4521981a4521873a4521765a4, read data = 00000000000000000000000123456789 @ 96342000.0 ps +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2312) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2582) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 2043) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2312) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2043) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 1773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 1503) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1503) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 1233) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1233) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 963) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 694) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 963) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 694) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 960) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65420) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64881) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65150) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64341) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64611) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63532) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62992) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63262) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62722) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62183) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62452) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61643) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61913) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60834) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61103) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60294) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60564) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60024) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59485) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58945) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59215) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58675) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58136) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58405) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57596) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57866) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 952) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 952) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57326) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56787) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57056) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56247) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56517) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55977) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55438) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55707) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54898) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55168) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54628) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54089) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54358) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53549) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53819) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52740) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53009) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52200) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52470) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51930) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51391) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51660) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50851) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50581) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50042) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50311) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 944) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49502) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49772) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 944) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49232) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 944) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48693) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48962) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48153) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48423) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47883) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47344) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47613) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46804) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47074) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46534) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45995) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45455) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45725) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45185) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44646) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44915) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44376) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43836) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43297) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42757) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43027) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42487) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41948) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42217) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41678) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 936) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 936) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40599) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40868) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40059) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40329) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39789) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39250) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39519) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38710) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38980) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38440) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37901) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38170) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37361) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37631) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36552) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36821) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36012) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36282) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35742) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35203) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35472) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34933) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34393) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34663) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34123) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33854) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33584) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33044) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33314) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 928) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32505) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32774) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 928) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32235) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31695) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31965) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31156) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31425) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30886) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30346) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30616) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29807) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28997) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29267) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28458) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28727) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28188) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27648) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27918) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27109) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26299) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26569) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25760) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26029) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25490) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24950) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 920) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24411) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 920) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23871) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23062) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23331) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22792) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22252) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21713) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21982) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21443) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20903) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21173) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20364) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20633) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19554) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19015) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19284) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18745) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18205) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18475) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17666) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17935) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17396) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16856) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17126) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 912) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16317) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 912) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16047) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15507) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15777) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14968) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15237) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14698) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14158) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14428) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13619) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13888) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13349) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12809) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13079) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12270) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12539) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12000) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11460) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11730) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10921) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10651) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10111) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10381) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9572) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9841) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9302) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8762) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 8223) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8492) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 904) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 904) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7953) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7413) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7683) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6874) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6604) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6064) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5525) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5794) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5255) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4715) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4985) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4176) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4445) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3366) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3636) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2827) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2557) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1478) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1747) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1208) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 668) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 938) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 896) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 398) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 896) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65395) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 896) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64855) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65125) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64046) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64315) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63506) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63776) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63236) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62697) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62966) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62427) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61887) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61348) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61617) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60808) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61078) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60538) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59999) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60268) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59459) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59729) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59189) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58650) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58919) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58110) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58380) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57840) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57301) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57570) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 888) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56761) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57031) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56491) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55952) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56221) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55412) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55682) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55142) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54603) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54872) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54063) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54333) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53793) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53254) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53523) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52714) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52984) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52444) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51905) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52174) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51365) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51635) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51095) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50556) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 50825) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50286) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50016) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49746) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49207) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49476) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 880) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 880) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48667) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48937) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48397) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47858) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47318) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47588) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47048) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46509) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45969) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46239) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45699) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45429) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44620) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43811) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 43271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43541) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43001) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42462) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42731) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41922) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41113) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41382) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 872) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 872) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40573) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40843) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40303) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39764) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40033) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39224) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38684) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37875) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37605) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37066) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37335) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36526) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36796) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36256) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35717) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35986) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35447) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34907) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34368) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34637) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33828) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34098) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33558) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33019) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33288) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 864) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 864) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32479) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 32749) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32209) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31670) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31939) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31400) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30860) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31130) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30321) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30590) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30051) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29511) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 29781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28972) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29241) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28702) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28162) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28432) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27623) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27892) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27353) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26813) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27083) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26274) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26004) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25464) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25734) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24925) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25194) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 856) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24655) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 856) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24115) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24385) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23576) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23306) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22766) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22227) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22496) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21957) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21417) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20878) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20608) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 20068) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20338) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19529) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19798) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19259) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18719) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18989) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18180) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18449) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17910) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17370) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17640) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16831) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 848) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16021) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15482) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15751) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15212) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14672) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14942) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14133) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14402) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13863) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 13323) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13593) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12784) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13053) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12514) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11974) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12244) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11435) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11704) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11165) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10625) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10895) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10086) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9276) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9546) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8737) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9006) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 840) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8467) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 840) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7927) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 840) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7388) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7118) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 6578) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6848) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6039) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6308) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5769) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5229) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5499) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4690) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4959) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4420) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3880) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4150) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3341) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3610) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2531) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1992) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2261) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1722) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1182) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1452) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 912) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 643) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 373) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65369) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 832) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64830) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65099) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64560) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64020) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64290) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63211) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62671) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62401) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61862) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61322) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61592) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61052) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60513) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60782) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59973) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60243) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59703) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59164) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59433) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58624) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58894) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58354) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57815) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58084) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 824) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57275) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57545) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 824) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57005) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56466) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56735) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55926) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56196) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55656) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55117) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55386) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54577) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54847) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54307) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53768) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54037) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53228) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53498) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52958) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52419) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52688) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51879) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52149) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51609) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51070) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51339) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50530) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50800) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50260) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49721) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49990) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49181) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49451) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 816) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 816) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48911) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48372) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48641) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47832) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48102) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47562) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47023) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47292) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46483) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46753) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46213) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45674) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45943) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45134) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45404) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44864) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44325) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44594) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43785) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44055) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43515) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42976) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43245) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42436) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42706) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42166) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41627) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41896) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41087) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41357) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 808) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 808) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40817) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40278) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40547) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39738) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40008) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39468) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38929) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39198) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38389) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38659) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37580) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37849) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37040) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37310) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36770) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36231) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36500) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35691) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35961) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35421) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34882) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35151) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34342) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34612) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34072) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33533) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33802) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32993) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33263) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 800) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 800) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32723) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32184) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32453) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31644) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31914) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31374) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30835) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31104) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30295) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30565) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30025) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29486) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29755) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28946) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 29216) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28676) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28137) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28406) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27867) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27327) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27597) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26788) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27057) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26518) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25978) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26248) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25439) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25708) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25169) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24629) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24899) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 792) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 792) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24090) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24359) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23820) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23280) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23550) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22741) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23010) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22471) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21931) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22201) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21392) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21661) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21122) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20582) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20852) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20043) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20312) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19773) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19233) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19503) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18694) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18963) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18424) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17884) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17345) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17614) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17075) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 784) -> [ 4500 ps] ACT @ (4, 16535) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16805) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 784) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 784) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 15996) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16265) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15726) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15186) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15456) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14647) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14916) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14377) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13837) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14107) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13298) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13567) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13028) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12488) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12758) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11949) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12218) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11139) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11409) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10600) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10869) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10330) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9790) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10060) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9251) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9520) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8981) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8441) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8711) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 776) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 776) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7902) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8171) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7632) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7092) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 7362) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6553) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6822) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6283) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5743) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6013) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5204) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5473) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4934) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4394) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4664) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3855) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3045) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3315) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2506) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2775) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2236) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1696) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1966) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1157) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1426) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 887) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 347) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 617) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 768) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65344) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 77) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 768) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65074) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64534) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63995) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63455) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62646) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62915) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62376) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61836) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 61297) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61566) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61027) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60487) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60757) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59948) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60217) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59678) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59138) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59408) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58868) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58329) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58598) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57789) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58059) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57519) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 760) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56980) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57249) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56440) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56710) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56170) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55631) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55900) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55361) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54821) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54282) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54551) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53742) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54012) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53472) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52933) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53202) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52393) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 52663) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52123) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51584) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51853) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51044) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51314) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50774) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50235) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50504) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49695) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49965) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49425) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48886) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49155) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 752) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48346) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48616) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46997) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47267) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46727) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46188) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46457) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45648) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 45918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44839) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45108) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44299) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44569) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44029) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43490) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43759) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42950) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43220) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42680) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42141) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42410) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41601) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41871) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41331) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40792) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41061) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 744) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40252) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40522) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39982) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39443) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39712) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38903) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38633) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38094) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38363) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37554) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36745) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37014) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36205) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36475) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35935) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35396) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35665) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34856) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34047) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34316) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33507) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33777) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33237) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] ACT @ (0, 32698) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32967) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 736) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32158) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31888) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31349) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31618) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30809) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31079) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30539) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30000) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30269) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29460) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29730) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28651) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28920) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28111) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28381) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27841) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27302) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27571) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26762) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26222) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25413) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25683) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24604) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24873) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 728) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 728) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23794) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24064) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23255) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23524) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22985) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22445) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22715) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22175) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21636) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21366) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20557) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20826) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19747) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19477) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18938) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18398) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18668) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17859) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17589) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17049) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17319) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 720) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16510) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16779) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 720) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 720) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16240) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15700) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15970) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15161) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15430) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 14891) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 14351) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14621) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13812) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14081) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13542) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13002) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13272) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12463) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12732) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12193) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11653) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11923) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11114) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11383) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10844) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10304) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10574) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9765) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10034) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9495) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8955) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9225) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8416) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 8685) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 712) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 712) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 8146) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 7606) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7876) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7067) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7336) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6797) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6257) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6527) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5718) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5987) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5448) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4908) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5178) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4369) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4638) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4099) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3559) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3829) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3020) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3289) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2750) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2210) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2480) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1671) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 1940) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 1401) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 861) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 322) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 591) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 704) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65318) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64778) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64239) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63699) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63969) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63160) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63429) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62620) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61811) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62080) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61541) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61001) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61271) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60462) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60731) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60192) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 59652) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59922) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59113) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59382) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58843) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58303) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58573) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57764) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58033) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 696) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57494) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 696) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56954) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57224) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56415) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55605) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55875) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55335) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54796) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55065) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54256) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54526) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53447) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53716) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52907) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53177) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52637) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52098) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52367) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51558) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51828) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51288) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50749) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 51018) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50209) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50479) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 688) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49939) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49669) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 688) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49400) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 688) -> +[ 4500 ps] ACT @ (4, 48860) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48590) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48051) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48320) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47511) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46971) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46162) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46432) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45892) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45353) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45622) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44813) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45083) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44543) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44004) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44273) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43464) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43734) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43194) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42655) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42924) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42115) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 41306) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41575) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 680) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40766) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 680) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40496) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40226) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39417) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39687) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39147) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38608) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38877) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38068) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38338) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37798) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37259) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37528) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36719) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36989) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36449) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35910) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36179) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35370) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 34561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34830) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34021) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 672) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32672) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32942) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 672) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32402) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31863) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32132) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31323) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31593) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31053) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30514) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 30783) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29974) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30244) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29704) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29165) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29434) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28625) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28085) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27276) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27546) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27006) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26467) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26736) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25927) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26197) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25657) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25118) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25387) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24578) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24848) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 664) -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 664) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24308) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23769) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24038) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23229) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23499) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22959) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22420) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22689) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21880) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21610) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 21071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21340) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20801) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20261) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20531) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (0, 656) -> [ 4500 ps] NOP -> [ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19991) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] WR @ (4, 656) -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2582) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2852) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 2312) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2582) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 1500 ps] ACT @ (1, 2043) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2312) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2043) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 1773) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 1503) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1503) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 1233) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (5) -> +[ 3000 ps] ACT @ (4, 1233) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (5, 963) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (1, 694) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 963) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (1) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 694) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (1, 424) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (5) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (5, 154) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 960) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 960) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65420) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64881) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64611) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64341) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63532) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63801) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63262) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62992) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62722) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62183) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62452) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61913) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61643) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61373) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60834) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61103) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60564) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60294) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60024) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59485) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59754) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59215) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58945) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58675) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58136) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58405) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57866) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57596) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 952) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57326) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56787) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57056) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56517) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56247) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55977) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55438) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55707) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55168) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54898) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54628) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54089) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54358) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53819) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53549) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 53279) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52740) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53009) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52470) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 52200) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51930) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 51391) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51660) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51121) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50851) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50581) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50042) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50311) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49772) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49502) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49232) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 944) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48693) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48962) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48423) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48153) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47883) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47344) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47613) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47074) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46804) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46534) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45995) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45455) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45185) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44915) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44646) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] ACT @ (4, 44106) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44376) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43836) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 43297) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42757) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42487) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41948) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42217) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41678) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41408) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41138) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 936) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40599) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40868) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40329) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40059) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39789) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39250) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39519) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38980) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38710) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38440) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37901) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37631) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37361) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37091) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 36552) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36821) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36282) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36012) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35742) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35203) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35472) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34933) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34393) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34663) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34123) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33854) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33584) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 928) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33044) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33314) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32774) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32505) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 928) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32235) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31695) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31965) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31425) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31156) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30886) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30346) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30616) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30076) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 29807) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29537) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28997) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29267) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28727) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28458) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28188) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27648) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27918) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27378) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27109) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26839) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26299) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26569) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26029) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25760) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25490) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24950) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25220) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 24680) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24411) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 920) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24141) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23601) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23871) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23331) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23062) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22792) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22252) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21713) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21443) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20903) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21173) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20633) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20364) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20094) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19554) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19824) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19284) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19015) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18745) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18205) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18475) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17935) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17666) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17396) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16856) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17126) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16586) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16317) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 912) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16047) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 15507) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15777) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15237) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14968) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14698) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14158) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14428) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13888) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13619) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13349) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12809) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13079) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12539) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12270) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12000) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11460) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11730) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11190) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10921) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10651) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10111) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10381) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9841) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 9572) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9302) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 8762) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8223) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 904) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7953) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7413) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7683) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7143) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6874) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6604) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6064) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6334) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5794) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5525) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5255) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4715) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4985) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4445) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4176) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3906) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3366) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3636) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3096) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 2827) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2557) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2017) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2287) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1747) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1478) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1208) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 668) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 938) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 398) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65395) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 128) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 896) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65125) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64855) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64585) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64046) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64315) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63776) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63506) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63236) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62697) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62966) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62427) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62157) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61887) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61348) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61617) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61078) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 60808) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60538) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 59999) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60268) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59729) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59459) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59189) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58650) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58919) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58380) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58110) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57840) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 888) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57301) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57570) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 888) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57031) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56761) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56491) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55952) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56221) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 55682) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55412) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55142) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54603) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54872) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54333) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54063) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53793) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53254) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53523) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52984) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52714) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52444) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51905) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52174) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51635) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51365) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51095) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50556) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50825) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50286) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50016) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49746) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49207) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49476) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 880) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 880) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 48937) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48667) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48397) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47858) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48127) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47588) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47318) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47048) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] ACT @ (0, 46509) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46239) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45969) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45699) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45160) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45429) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 44620) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44350) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 43811) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43541) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43271) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43001) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42462) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42731) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42192) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41922) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41652) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 872) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41113) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41382) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 872) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 872) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40843) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40573) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40303) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39764) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40033) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39224) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38954) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38415) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 37875) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37605) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37066) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37335) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36796) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36526) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36256) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35717) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35986) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35447) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35177) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34907) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34368) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34637) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34098) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33828) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33558) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33019) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33288) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 864) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 864) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 32749) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32479) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32209) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31670) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31939) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31400) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30860) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30590) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30321) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30051) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29511) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28972) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28702) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28162) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28432) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27892) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27623) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27353) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26813) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27083) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26543) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26274) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26004) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25464) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25734) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25194) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24925) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24655) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 856) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24115) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 23576) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23306) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22766) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22496) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22227) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21957) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21417) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21687) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21147) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20878) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20608) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20068) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20338) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19798) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19529) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19259) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18719) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18989) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18449) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18180) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17910) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17370) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 16831) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16561) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 848) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16021) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15482) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15212) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14672) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14942) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14402) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14133) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13863) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13323) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13593) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13053) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12784) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12514) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11974) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12244) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 11704) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11435) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11165) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10625) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10086) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9816) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9276) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9546) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9006) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8737) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8467) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7927) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8197) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 840) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7657) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7388) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7118) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6578) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6848) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6308) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6039) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5769) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5229) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5499) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 4959) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4690) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4420) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3880) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3610) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3341) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3071) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 2531) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2261) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1992) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1722) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1182) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1452) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 912) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 643) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 373) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 832) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65369) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 103) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 832) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65099) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64830) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64560) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64020) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64290) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 63750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63481) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63211) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62671) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62941) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62401) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61862) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62131) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61592) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61322) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61052) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 60513) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60782) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60243) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59973) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59703) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59164) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59433) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58894) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58624) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58354) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 824) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57815) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58084) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57545) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57275) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 824) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57005) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56466) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56735) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56196) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55926) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55656) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55117) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55386) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54847) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 54577) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54307) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 53768) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54037) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53498) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53228) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52958) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52419) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52688) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52149) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51879) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51609) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51070) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51339) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50800) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50530) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50260) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] ACT @ (0, 49721) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49990) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 816) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49451) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49181) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 816) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48911) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48372) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48641) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48102) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47832) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47562) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47023) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47292) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46753) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46483) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46213) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45674) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45943) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45404) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45134) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44864) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44325) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44594) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44055) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43785) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43515) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42976) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43245) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42706) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42436) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42166) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 808) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41627) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41896) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41357) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41087) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 808) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40817) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40278) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40547) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40008) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39738) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39468) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38929) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39198) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38659) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38389) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38119) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 37580) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37849) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37310) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37040) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36770) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36231) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36500) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35961) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35691) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35421) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34882) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35151) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34612) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34342) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34072) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 33533) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33802) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33263) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32993) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 800) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32723) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32184) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32453) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31914) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 31644) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31374) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 30835) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31104) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30565) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30295) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30025) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29486) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29755) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29216) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28946) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28676) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28137) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28406) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27867) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27327) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27597) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27057) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26788) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26518) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25978) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26248) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25708) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25439) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 25169) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24629) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24899) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 792) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24359) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24090) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23820) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23280) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23550) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23010) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22741) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22471) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21931) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22201) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21661) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21392) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21122) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20582) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20852) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20312) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20043) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19773) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19233) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 19503) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 18963) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18694) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18424) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17884) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18154) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 17614) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17345) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17075) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 16535) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16805) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 784) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 784) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16265) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15996) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15726) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15186) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15456) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14916) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14647) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14377) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13837) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14107) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13567) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13298) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13028) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 12488) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12758) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12218) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11949) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11679) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11139) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11409) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10869) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 10600) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10330) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 9790) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10060) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 9520) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9251) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8981) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8441) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8711) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 776) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 776) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8171) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7902) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7632) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7092) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7362) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6822) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6553) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6283) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 5743) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6013) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5473) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5204) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4934) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4394) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4664) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4124) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 3855) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3585) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3045) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3315) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2775) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2506) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2236) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1696) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1966) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1426) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1157) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 887) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 768) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 347) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 617) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 77) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65344) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 768) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 65074) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 64534) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64804) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64264) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63995) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63725) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63185) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63455) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62915) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 62646) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62376) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 61836) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62106) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61566) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61297) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61027) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60487) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60757) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60217) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59948) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59678) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59138) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59408) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58868) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 760) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58329) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58598) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58059) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57789) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 57519) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 760) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56980) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 57249) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56710) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56440) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 56170) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55631) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55900) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55361) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55091) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54821) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54282) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54551) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 54012) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53742) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53472) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52933) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53202) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52663) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52393) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52123) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51853) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51584) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] ACT @ (4, 51044) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51314) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50774) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50235) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50504) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49965) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49695) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49425) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 752) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48886) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49155) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 752) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48616) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48346) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48076) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47537) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47806) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 47267) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46997) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 46727) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46188) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46457) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45918) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 45648) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45378) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 44839) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45108) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44569) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44299) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44029) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43490) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43759) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43220) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42950) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42680) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42141) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42410) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41871) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41601) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41331) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 40792) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41061) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 744) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 40522) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40252) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 39982) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39443) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39712) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39173) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 38903) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38633) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 38094) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38363) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37824) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37554) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37284) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36745) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37014) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36475) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36205) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35935) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35396) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35665) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35126) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34856) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34586) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34047) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34316) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33777) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33507) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 33237) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32698) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32967) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 736) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32428) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 32158) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31888) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 31349) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31618) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31079) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30809) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30539) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30000) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30269) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29730) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29460) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29190) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28651) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28920) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 28381) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28111) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27841) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27302) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27571) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 27032) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26762) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 26492) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25953) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26222) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25683) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 25413) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25143) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 24604) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24873) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 728) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 728) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24334) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 23794) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24064) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23524) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23255) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22985) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22445) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22715) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22175) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21906) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21636) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21096) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21366) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20826) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20557) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20287) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 19747) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20017) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19477) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 19208) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 18938) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18398) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 18668) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 18128) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 17859) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17589) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 17049) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 17319) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 16779) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16510) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 720) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 16240) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15700) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15970) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 15430) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 15161) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14891) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14351) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 14621) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 14081) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13812) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 13542) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 13002) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 13272) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 12732) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 12463) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 12193) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11653) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 11923) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 11383) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 11114) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10844) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 10304) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 10574) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 10034) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9765) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9495) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8955) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 9225) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 8685) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8416) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 712) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 8146) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7606) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7876) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 7336) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 7067) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 6797) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 6257) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 6527) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 5987) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5718) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 5448) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4908) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 5178) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 4638) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 4369) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 4099) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 3559) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3829) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 3289) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 3020) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2750) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 2210) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 2480) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 1940) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1671) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1401) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 704) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 861) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 1131) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 591) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 322) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 704) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 65048) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 65318) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 64778) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 64509) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 64239) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63699) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 63969) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 63429) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 63160) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62890) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 62350) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 62620) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 62080) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61811) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61541) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 61001) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 61271) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 60731) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60462) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 60192) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59652) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59922) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 59382) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 59113) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 58843) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 58303) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 58573) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 58033) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57764) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 57494) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 696) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56954) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 57224) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 56684) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 56415) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 56145) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 55605) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 55875) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55335) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 54796) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 55065) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] ACT @ (0, 54526) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 54256) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] REF -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53986) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] ACT @ (0, 53447) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 53716) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 53177) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52907) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52637) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 52098) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 52367) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 51828) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51558) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51288) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50749) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 51018) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 50479) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 50209) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 49939) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 49400) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 49669) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 688) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 688) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 49130) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48860) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 48590) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 48051) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 48320) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 47781) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 47511) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 47241) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 46702) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46971) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 46432) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 46162) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45892) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45353) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 45622) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 45083) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44813) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44543) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 44004) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 44273) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 43734) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43464) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 43194) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 42655) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 42924) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 42385) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 42115) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 41845) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41306) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 41575) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 41036) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 40766) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 680) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40496) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 39957) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 40226) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 39687) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39417) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 39147) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38608) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38877) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 38338) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 38068) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37798) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 37259) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 37528) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 36989) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36719) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 36449) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 35910) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 36179) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 35640) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 35370) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 35100) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34561) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 34830) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 34291) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 34021) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33751) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 33212) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 33481) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 32942) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32672) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 672) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32402) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31863) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 32132) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 31593) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31323) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 31053) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30514) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 30783) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 30244) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29974) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 29704) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 29165) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 29434) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 28895) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28625) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 28355) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27816) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 28085) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 27546) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 27276) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 27006) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 26467) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 26736) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 26197) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25927) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25657) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 25118) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 25387) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 24848) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24578) -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 664) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24308) -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23769) -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 24038) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 23499) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 23229) -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 22959) -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 22420) -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 22689) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> +[ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 22150) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21880) -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 21610) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 21071) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 21340) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (0, 20801) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 1500 ps] PRE @ (4) -> +[ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] ACT @ (4, 20261) -> +[ 1500 ps] NOP -> [ 1500 ps] PRE @ (0) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] ACT @ (0, 20531) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> + +-------------------------------- +DONE TEST 2: RANDOM +Number of Operations: 2304 +Time Started: 96288 ns +Time Done: 189582 ns +Average Rate: 40 ns/request +-------------------------------- + + +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 3000 ps] RD @ (0, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> +[ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 1500 ps] PRE @ (4) -> [ 3000 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] ACT @ (4, 19991) -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 3000 ps] RD @ (4, 656) -> [ 1500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> FAILED: Address = 75846088, expected data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056c9c1ad56c8b3ad56c7a5ad56c697ad, read data = 00000000000000000000000123456789 @ 189672000.0 ps +[ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> +[ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> +[ 1500 ps] NOP -> [ 4500 ps] NOP -> [ 1500 ps] NOP -> [ 4500 ps] NOP -> + +------- SUMMARY ------- +Number of Writes = 4608 +Number of Reads = 4608 +Number of Success = 4604 +Number of Fails = 4 +Number of Injected Errors = 4 + + + +TEST CALIBRATION +[-]: write_test_address_counter = 500 +[-]: read_test_address_counter = 200 +[-]: correct_read_data = 349 +[-]: wrong_read_data = 0 +$stop called at time : 191816 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 748 +run: Time (s): cpu = 00:00:15 ; elapsed = 00:08:59 . Memory (MB): peak = 2856.785 ; gain = 8.004 ; free physical = 1507 ; free virtual = 10726 +## quit +INFO: xsimkernel Simulation Memory Usage: 156312 KB (Peak: 210572 KB), Simulation CPU Usage: 537830 ms +INFO: [Common 17-206] Exiting xsim at Wed Jan 29 22:40:45 2025... diff --git a/testbench/xsim/test_ecc_0.sh b/testbench/xsim/test_ecc_0.sh deleted file mode 100755 index 515c24d..0000000 --- a/testbench/xsim/test_ecc_0.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/bash -f -#********************************************************************************************************* -# Vivado (TM) v2022.1 (64-bit) -# -# Filename : ddr3_dimm_micron_sim.sh -# Simulator : Xilinx Vivado Simulator -# Description : Simulation script for compiling, elaborating and verifying the project source files. -# The script will automatically create the design libraries sub-directories in the run -# directory, add the library logical mappings in the simulator setup file, create default -# 'do/prj' file, execute compilation, elaboration and simulation steps. -# -# Generated by Vivado on Sat Jul 27 15:51:00 PST 2024 -# SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 -# -# Tool Version Limit: 2022.04 -# -# usage: ddr3_dimm_micron_sim.sh [-help] -# usage: ddr3_dimm_micron_sim.sh [-lib_map_path] -# usage: ddr3_dimm_micron_sim.sh [-noclean_files] -# usage: ddr3_dimm_micron_sim.sh [-reset_run] -# -#********************************************************************************************************* - -# Set xvlog options -xvlog_opts="--incr --relax -L uvm" - -# Script info -echo -e "ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id)\n" - -# Main steps -run() -{ - check_args $# $1 - setup $1 $2 - compile - elaborate - simulate -} - -# RUN_STEP: -compile() -{ - xvlog $xvlog_opts -prj vlog.prj 2>&1 | tee compile.log -} - -# RUN_STEP: -elaborate() -{ - xelab -generic_top "ECC_ENABLE=0" --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log -} - -# RUN_STEP: -simulate() -{ - xsim ddr3_dimm_micron_sim -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} -tclbatch cmd.tcl -log simulate.log -} - -# STEP: setup -setup() -{ - case $1 in - "-lib_map_path" ) - if [[ ($2 == "") ]]; then - echo -e "ERROR: Simulation library directory path not specified (type \"./ddr3_dimm_micron_sim.sh -help\" for more information)\n" - exit 1 - fi - ;; - "-reset_run" ) - reset_run - echo -e "INFO: Simulation run files deleted.\n" - exit 0 - ;; - "-noclean_files" ) - # do not remove previous data - ;; - * ) - esac - - # Add any setup/initialization commands here:- - - # - -} - -# Delete generated data from the previous run -reset_run() -{ - files_to_remove=(xelab.pb xsim.jou xvhdl.log xvlog.log compile.log elaborate.log simulate.log xelab.log xsim.log run.log xvhdl.pb xvlog.pb ddr3_dimm_micron_sim.wdb xsim.dir) - for (( i=0; i<${#files_to_remove[*]}; i++ )); do - file="${files_to_remove[i]}" - if [[ -e $file ]]; then - rm -rf $file - fi - done -} - -# Check command line arguments -check_args() -{ - if [[ ($1 == 1 ) && ($2 != "-lib_map_path" && $2 != "-noclean_files" && $2 != "-reset_run" && $2 != "-help" && $2 != "-h") ]]; then - echo -e "ERROR: Unknown option specified '$2' (type \"./ddr3_dimm_micron_sim.sh -help\" for more information)\n" - exit 1 - fi - - if [[ ($2 == "-help" || $2 == "-h") ]]; then - usage - fi -} - -# Script usage -usage() -{ - msg="Usage: ddr3_dimm_micron_sim.sh [-help]\n\ -Usage: ddr3_dimm_micron_sim.sh [-lib_map_path]\n\ -Usage: ddr3_dimm_micron_sim.sh [-reset_run]\n\ -Usage: ddr3_dimm_micron_sim.sh [-noclean_files]\n\n\ -[-help] -- Print help information for this script\n\n\ -[-lib_map_path ] -- Compiled simulation library directory path. The simulation library is compiled\n\ -using the compile_simlib tcl command. Please see 'compile_simlib -help' for more information.\n\n\ -[-reset_run] -- Recreate simulator setup files and library mappings for a clean run. The generated files\n\ -from the previous run will be removed. If you don't want to remove the simulator generated files, use the\n\ --noclean_files switch.\n\n\ -[-noclean_files] -- Reset previous run, but do not remove simulator generated files from the previous run.\n\n" - echo -e $msg - exit 1 -} - -# Launch script -run $1 $2 diff --git a/testbench/xsim/test_ecc_1.log b/testbench/xsim/test_ecc_1.log deleted file mode 100644 index c2d60ac..0000000 --- a/testbench/xsim/test_ecc_1.log +++ /dev/null @@ -1,19569 +0,0 @@ -ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) - -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_controller.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_controller -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_phy -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_top.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_top -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3 -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ecc/ecc_dec.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ecc_dec -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ecc/ecc_enc.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ecc_enc -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_module -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module glbl -Vivado Simulator v2022.1 -Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. -Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab -generic_top ECC_ENABLE=1 --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log -Multi-threading is on. Using 14 slave threads. -Starting static elaboration -Pass Through NonSizing Optimizer -WARNING: [VRFC 10-3532] module 'glbl' does not have a parameter named 'ECC_ENABLE' to override [/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v:6] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:202] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:203] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:205] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:206] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:207] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:208] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:209] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:211] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:263] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:264] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:266] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:267] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:268] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:269] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:270] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:272] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:366] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:367] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:369] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:370] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:371] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:372] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:644] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:645] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:647] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:648] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:649] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:650] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:651] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:799] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:800] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:802] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:803] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:804] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:805] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1143] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1144] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1146] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1147] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1148] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1149] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1150] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1152] -WARNING: [VRFC 10-3091] actual bit length 1 differs from formal bit length 2 for port 'ck' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:248] -WARNING: [VRFC 10-3091] actual bit length 1 differs from formal bit length 2 for port 'ck_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:249] -WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:259] -WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:246] -Completed static elaboration -Starting simulation data flow analysis -Completed simulation data flow analysis -Time Resolution for simulation is 1ps -Compiling module xil_defaultlib.ecc_enc(K=57,P0_LSB=0) -Compiling module xil_defaultlib.ecc_dec(K=57,P0_LSB=0) -Compiling module xil_defaultlib.ddr3_controller(ROW_BITS=16,LANE... -Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... -Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... -Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.OBUFDS -Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... -Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... -Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... -Compiling module unisims_ver.OBUF(SLEW="FAST") -Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... -Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") -Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... -Compiling module unisims_ver.IDELAYCTRL_default -Compiling module unisims_ver.DCIRESET -Compiling module xil_defaultlib.ddr3_phy(ROW_BITS=16,ODELAY_SUPP... -Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=1... -Compiling module xil_defaultlib.ddr3_default -Compiling module xil_defaultlib.ddr3_module_default -Compiling module xil_defaultlib.ddr3_dimm_micron_sim -Compiling module xil_defaultlib.glbl -Built simulation snapshot ddr3_dimm_micron_sim - -****** xsim v2022.1 (64-bit) - **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 - **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 - ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. - -source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl -# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} -Time resolution is 1 ps -source cmd.tcl -## set curr_wave [current_wave_config] -## if { [string length $curr_wave] == 0 } { -## if { [llength [get_objects]] > 0} { -## add_wave / -## set_property needs_save false [current_wave_config] -## } else { -## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." -## } -## } -## run -all - -CONTROLLER PARAMETERS: ------------------------------ -CONTROLLER_CLK_PERIOD = 10000 -DDR3_CLK_PERIOD = 2500 -ROW_BITS = 16 -COL_BITS = 10 -BA_BITS = 3 -BYTE_LANES = 8 -AUX_WIDTH = 16 -MICRON_SIM = 1 -ODELAY_SUPPORTED = 1 -SECOND_WISHBONE = 0 -WB2_ADDR_BITS = 7 -WB2_DATA_BITS = 32 -ECC_ENABLE = 1 -ECC_INFORMATION_BITS = 57 -WB_ERROR = 0 - -CONTROLLER LOCALPARAMS: ------------------------------ -wb_addr_bits = 26 -wb_data_bits = 512 -wb_sel_bits = 64 -wb2_sel_bits = 4 -DQ_BITS = 8 -row_bank_col = 1 - -COMMAND SLOTS: ------------------------------ -READ_SLOT = 2 -WRITE_SLOT = 3 -ACTIVATE_SLOT = 0 -PRECHARGE_SLOT = 1 -REMAINING_SLOT = 0 - -DELAYS: ------------------------------ -CL = 6 -CWL = 5 -PRECHARGE_TO_ACTIVATE_DELAY = 1 -ACTIVATE_TO_WRITE_DELAY = 0 -ACTIVATE_TO_READ_DELAY = 0 -ACTIVATE_TO_PRECHARGE_DELAY = 3 -READ_TO_WRITE_DELAY = 1 -READ_TO_READ_DELAY = 0 -READ_TO_PRECHARGE_DELAY = 1 -WRITE_TO_WRITE_DELAY = 0 -WRITE_TO_READ_DELAY = 3 -WRITE_TO_PRECHARGE_DELAY = 4 -STAGE2_DATA_DEPTH = 2 -READ_ACK_PIPE_WIDTH = 6 - -ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U4R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -[x ps] MRS -> Timing Violation Error : The low pulse of RST signal at time 20.000 ns in DCIRESET has to be greater than 100 ns -Timing Violation Error : The high pulse of RST signal at time 90.000 ns in DCIRESET has to be greater than 100 ns -[110724 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] ZQC -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 101) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 108) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 112) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 113) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 116) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 118) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 123) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 128) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 133) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 138) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 143) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 148) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 153) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 156) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 158) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 161) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 163) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 166) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 168) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 171) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 173) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 176) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 178) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 181) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 183) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 186) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 188) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 191) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 196) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 100) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 101) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 102) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 104) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 105) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 107) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 108) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 109) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 110) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 111) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 112) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 113) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 114) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 115) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 116) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 118) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 119) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 120) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 122) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 123) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 124) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 125) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 126) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 128) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 129) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 130) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 133) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 134) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 135) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 138) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 139) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 140) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 143) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 144) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 145) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 148) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 149) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 150) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 153) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 154) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 155) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 156) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 158) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 159) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 160) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 161) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 163) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 164) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 165) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 166) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 168) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 169) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 170) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 171) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 172) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 173) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 174) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 175) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 176) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 177) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 178) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 179) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 180) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 181) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 182) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 183) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 184) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 185) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 186) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 188) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 189) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 190) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 191) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 193) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 196) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 198) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 199) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 976) -> -[ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 0) -> [ 7500 ps] WR @ (1, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] ACT @ (3, 0) -> -[ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> -[ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 984) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 0) -> [ 7500 ps] WR @ (6, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] ACT @ (0, 1) -> -[ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> -[ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> -[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> -[ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -FAILED: Address = 1151, expected data = 0000000000000097cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 197380000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> --------------------------------- -DONE TEST 1: FIRST ROW -Number of Operations: 2304 -Time Started: 171750 ns -Time Done: 198290 ns -Average Rate: 11 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 0) -> [ 7500 ps] WR @ (1, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] ACT @ (3, 0) -> -[ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> -[ 2500 ps] ACT @ (4, 0) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 968) -> [ 2500 ps] ACT @ (5, 0) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 984) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 0) -> [ 7500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 0) -> [ 7500 ps] WR @ (6, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (7, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] ACT @ (0, 1) -> -[ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> -[ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> -[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 0) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 0) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (4, 0) -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 0) -> -[ 5000 ps] RD @ (4, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 0) -> [ 5000 ps] RD @ (5, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 0) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -FAILED: Address = 1151, expected data = 0000000000000097cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 223940000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> - --------------------------------- -DONE TEST 1: MIDDLE ROW -Number of Operations: 2304 -Time Started: 198290 ns -Time Done: 224850 ns -Average Rate: 11 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 32767) -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] ACT @ (3, 32767) -> [ 7500 ps] WR @ (2, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (4, 32767) -> -[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 968) -> -[ 2500 ps] ACT @ (5, 32767) -> [ 7500 ps] WR @ (4, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 968) -> [ 2500 ps] ACT @ (6, 32767) -> [ 7500 ps] WR @ (5, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 984) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 968) -> [ 2500 ps] ACT @ (7, 32767) -> [ 7500 ps] WR @ (6, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] WR @ (7, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] ACT @ (1, 32768) -> -[ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32767) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32767) -> [ 5000 ps] RD @ (0, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 5000 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32767) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 32767) -> -[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 32767) -> [ 5000 ps] RD @ (4, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32767) -> [ 5000 ps] RD @ (5, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32767) -> [ 5000 ps] RD @ (6, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32768) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 32768) -> -[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 33554559, expected data = 0000000000000050286b4150286a33502869255028681750286709502865fb502864ed502863df502862d3502861c5502860b750285fa950285e9b50285d8d50, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 250760000.0 ps -[ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> --------------------------------- -DONE TEST 1: LAST ROW -Number of Operations: 2304 -Time Started: 224850 ns -Time Done: 251670 ns -Average Rate: 11 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (4, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54358) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 43566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 14428) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 11190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9032) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 2557) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56221) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55142) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52984) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54063) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 50825) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 47588) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 38954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35717) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32479) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29241) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 30321) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 21687) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 18449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17370) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 10895) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7657) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8737) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3341) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> -[ 2500 ps] ACT @ (0, 103) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57005) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54847) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 52688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 49451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37580) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31104) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30025) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27867) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 25708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20312) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19233) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12758) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9520) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 3045) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 62106) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 58868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57789) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 32967) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 29730) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30809) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20017) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 18938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12463) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 10304) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 3829) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 591) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65048) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58573) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55335) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56415) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 48860) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 46702) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 40226) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 36989) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38068) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] ACT @ (0, 31593) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 22959) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 14326) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 12167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 5692) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 2454) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1375) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60436) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57198) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 52882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 50723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 42089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39931) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 23743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 15109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 12951) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9713) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64457) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59061) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 60141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 51507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 48269) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49349) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47190) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43952) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45032) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42873) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40715) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38556) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 37477) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33160) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34240) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32081) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 31002) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27764) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 28844) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26685) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24527) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25606) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 22368) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23448) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21289) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 19131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20210) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 16972) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18052) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15893) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11576) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12656) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9418) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10497) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 8339) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6180) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7260) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5101) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 784) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1864) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 64162) -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60924) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 62004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 53370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 50132) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40419) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35023) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33944) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31786) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32865) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 30707) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28548) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 24231) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 20994) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 12360) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 1568) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 60629) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61708) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57391) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55233) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54154) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51995) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 49837) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 42283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40124) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35807) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33649) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34728) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 31490) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30411) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 28253) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29332) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26094) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27174) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22857) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23936) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 19619) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17461) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15302) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16382) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14223) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 13144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 9906) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10986) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8827) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6669) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 4510) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5590) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 2352) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3431) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1273) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 64650) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62492) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63571) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61413) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59254) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57096) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58175) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56017) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53858) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54938) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51700) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52779) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50621) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48462) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 49542) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46304) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 47383) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45225) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43066) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 40908) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41987) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39829) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 37670) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38750) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35512) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36591) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34433) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31195) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] ACT @ (4, 27957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11769) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10690) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8532) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 6373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58959) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55721) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 49246) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 42771) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39533) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38454) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 31979) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 22266) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16870) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 13632) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10395) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8236) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 1761) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64060) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59743) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 56505) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53268) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 50030) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 46792) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47872) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45713) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39238) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40317) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38159) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36000) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37080) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 33842) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32763) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30604) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31684) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29525) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26287) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 27367) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 20891) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 17654) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18733) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15495) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14416) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12258) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10099) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6862) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 2545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 387) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] ACT @ (4, 59447) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 50814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47576) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 44339) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41101) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 42180) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40022) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37863) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 35705) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32467) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19517) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20596) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18438) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 13042) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 6566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2250) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 91) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61310) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60231) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58073) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48360) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 49439) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 42964) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41885) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39726) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40806) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36489) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31093) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30014) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26776) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27855) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 24618) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21380) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 22459) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19221) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 20301) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18142) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15984) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17063) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 13825) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14905) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12746) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10588) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11667) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8429) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9509) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7350) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5192) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6271) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3033) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4113) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 1954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65332) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 875) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63173) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64253) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59936) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61015) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57777) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58857) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56698) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54540) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55619) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 52381) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 50223) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 46985) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44827) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45906) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43748) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41589) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42669) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39431) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40510) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38352) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37273) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34035) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32956) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30797) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29718) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] ACT @ (4, 25401) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 26481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 24322) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 17847) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 15688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12451) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13530) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 3817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61799) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59641) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59640) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58562) -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57483) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] ACT @ (4, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 56403) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55324) -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54244) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 53166) -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51007) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49928) -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48849) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> -[ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45611) -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42374) -> [ 7500 ps] WR @ (7, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41294) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38057) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 39136) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35898) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34819) -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32661) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31582) -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30502) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29423) -> -[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 28344) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 29423) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 27264) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 26186) -> [ 7500 ps] WR @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 25106) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 22948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 20789) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 976) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 14314) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 12155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 8918) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9997) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 2443) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 60424) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 59345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 57187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55028) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50711) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49632) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 47474) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 48553) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 43157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 44236) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42078) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 39919) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40999) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 37761) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 38840) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 36682) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35603) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 32365) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33444) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 31286) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 30207) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 28048) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 21573) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 22652) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 20494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 18335) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 16177) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 17256) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15098) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 12939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14019) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 10781) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11860) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 8622) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 9702) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 7543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 5385) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6464) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> -[ 2500 ps] ACT @ (3, 65525) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1068) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 61208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 59050) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52574) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 51495) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 49337) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50416) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39624) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 38545) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34228) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33149) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 30990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32070) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 28832) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 29911) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 23436) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 20198) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16961) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 13723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 11565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7248) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6169) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 1852) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 2931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 773) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 61992) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59833) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60913) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 56596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54437) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53358) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 51200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 47962) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 41487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 39329) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 37170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35012) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32853) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33933) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 30695) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31774) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29616) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 27457) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28537) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24220) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 23141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 19903) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 18824) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16665) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17745) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 14507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 15586) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11269) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 12349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 9111) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 10190) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8032) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5873) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2852) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1773) -> [ 5000 ps] RD @ (4, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65150) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 694) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64071) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61913) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62992) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 60834) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59754) -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56517) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 55438) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 54358) -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 53279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51121) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 52200) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50042) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48962) -> [ 5000 ps] RD @ (0, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47883) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45725) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 46804) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44646) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43566) -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40329) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41408) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38170) -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37091) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34933) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36012) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 33854) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32774) -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31695) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29537) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27378) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28458) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 26299) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25220) -> [ 5000 ps] RD @ (4, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21982) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23062) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 20903) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19824) -> -[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18745) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16586) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17666) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 15507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14428) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11190) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12270) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10111) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 9032) -> [ 5000 ps] RD @ (4, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 7953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 5794) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 6874) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4715) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3636) -> [ 5000 ps] RD @ (4, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2557) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 398) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1478) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 64855) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63776) -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 61617) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62697) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60538) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58380) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59459) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57301) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 56221) -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 52984) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 54063) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 51905) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50825) -> [ 5000 ps] RD @ (0, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49746) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47588) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48667) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 46509) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45429) -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42192) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43271) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41113) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40033) -> -[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38954) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36796) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37875) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 35717) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34637) -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33558) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31400) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32479) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30321) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29241) -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27083) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23845) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24925) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22766) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21687) -> -[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20608) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18449) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19529) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 17370) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16291) -> [ 5000 ps] RD @ (4, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13053) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14133) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 11974) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10895) -> [ 5000 ps] RD @ (4, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 9816) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 7657) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 8737) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5499) -> [ 5000 ps] RD @ (4, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4420) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2261) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3341) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1182) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 103) -> [ 5000 ps] RD @ (4, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64560) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62401) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63481) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60243) -> -[ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58084) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57005) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54847) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55926) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53768) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52688) -> [ 5000 ps] RD @ (0, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51609) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49451) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50530) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 48372) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47292) -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46213) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44055) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 42976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41896) -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40817) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38659) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39738) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 37580) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36500) -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35421) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33263) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34342) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32184) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 31104) -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30025) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 27867) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28946) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26788) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25708) -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24629) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22471) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20312) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21392) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 19233) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18154) -> [ 5000 ps] RD @ (4, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14916) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15996) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 13837) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12758) -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 11679) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9520) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10600) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8441) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7362) -> [ 5000 ps] RD @ (4, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6283) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4124) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5204) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 3045) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1966) -> [ 5000 ps] RD @ (4, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 887) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64264) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63185) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62106) -> -[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61027) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58868) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59948) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 57789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56710) -> [ 5000 ps] RD @ (4, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54551) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55631) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53472) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51314) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52393) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50235) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49155) -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45918) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 44839) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43759) -> -[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42680) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40522) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41601) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 39443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38363) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35126) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36205) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34047) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32967) -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 31888) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 29730) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30809) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28651) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27571) -> [ 5000 ps] RD @ (0, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26492) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24334) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25413) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23255) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22175) -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 20017) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21096) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16779) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17859) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (4, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15700) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14621) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13542) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 11383) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12463) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 10304) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9225) -> [ 5000 ps] RD @ (4, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5987) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7067) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 4908) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3829) -> -[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2750) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 591) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1671) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 65048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63969) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62890) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60731) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61811) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59652) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58573) -> [ 5000 ps] RD @ (4, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55335) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53177) -> [ 5000 ps] RD @ (4, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51018) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52098) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49939) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47781) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48860) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 46702) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45622) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42385) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 41306) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40226) -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 36989) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 38068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 35910) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34830) -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33751) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31593) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32672) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30514) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29434) -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28355) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26197) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25118) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24038) -> -[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22959) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20801) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21880) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 19722) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18642) -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17563) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15405) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13246) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14326) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 12167) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11088) -> [ 5000 ps] RD @ (4, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7850) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8930) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 6771) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5692) -> -[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4613) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2454) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3534) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 1375) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 296) -> [ 5000 ps] RD @ (4, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64753) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62594) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63674) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 61515) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 60436) -> [ 5000 ps] RD @ (4, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 57198) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56119) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55040) -> [ 5000 ps] RD @ (4, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53961) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51802) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52882) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50723) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49644) -> [ 5000 ps] RD @ (4, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 47485) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46406) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44248) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 43169) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 42089) -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38852) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 37773) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36693) -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35614) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33456) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34535) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32377) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31297) -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30218) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28060) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29139) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 26981) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25901) -> -[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24822) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22664) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23743) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 21585) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20505) -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19426) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17268) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16189) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15109) -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12951) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14030) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11872) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9713) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10793) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 8634) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7555) -> -[ 5000 ps] RD @ (4, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6476) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4317) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5397) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 3238) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2159) -> [ 5000 ps] RD @ (4, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64457) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 63378) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 62299) -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 61220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59061) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 60141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 57982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56903) -> [ 5000 ps] RD @ (4, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55824) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53665) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54745) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52586) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51507) -> [ 5000 ps] RD @ (4, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48269) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47190) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46111) -> -[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43952) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 45032) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 42873) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40715) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41794) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 39636) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38556) -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37477) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35319) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36398) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 34240) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33160) -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32081) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29923) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31002) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 28844) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27764) -> -[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26685) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24527) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25606) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 23448) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22368) -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21289) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19131) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20210) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18052) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 16972) -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15893) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 13735) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 14814) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12656) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11576) -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9418) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10497) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8339) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6180) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7260) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 5101) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4022) -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 784) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1864) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 65241) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 64162) -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 63083) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60924) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 62004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 59845) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58766) -> [ 5000 ps] RD @ (4, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57687) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55528) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56608) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54449) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53370) -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52291) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50132) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51212) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49053) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47974) -> [ 5000 ps] RD @ (4, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46895) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44736) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45816) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43657) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42578) -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 40419) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41499) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39340) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37182) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38261) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 36103) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 35023) -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 33944) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31786) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32865) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 30707) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29627) -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28548) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26390) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27469) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25311) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24231) -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20994) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22073) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 19915) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18835) -> -[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17756) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15598) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16677) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 14519) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13439) -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12360) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10202) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11281) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9123) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 8043) -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5885) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6964) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2647) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3727) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 1568) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 489) -> -[ 5000 ps] RD @ (4, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64946) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62787) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63867) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 61708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60629) -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59550) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57391) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58471) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56312) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 55233) -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 51995) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 53075) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 50916) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49837) -> [ 5000 ps] RD @ (4, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48758) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46599) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47679) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45520) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44441) -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43362) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41203) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42283) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40124) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39045) -> -[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36886) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37966) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 35807) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 33649) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34728) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 32570) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31490) -> [ 5000 ps] RD @ (0, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30411) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28253) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29332) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 27174) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26094) -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25015) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22857) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23936) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21778) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20698) -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19619) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17461) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18540) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 16382) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15302) -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14223) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12065) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 10986) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9906) -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 8827) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 6669) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 7748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5590) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4510) -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2352) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3431) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1273) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64650) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 194) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 63571) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62492) -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61413) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59254) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60334) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 58175) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57096) -> [ 5000 ps] RD @ (4, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56017) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 53858) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54938) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52779) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51700) -> [ 5000 ps] RD @ (4, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50621) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48462) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49542) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 47383) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46304) -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45225) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43066) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44146) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 41987) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40908) -> -[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39829) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37670) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38750) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 36591) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35512) -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33353) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34433) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32274) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30116) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31195) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 29037) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27957) -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24720) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25799) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 23641) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22561) -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21482) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19324) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20403) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 18245) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17165) -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16086) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13928) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15007) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 12849) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 11769) -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 10690) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 8532) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9611) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7453) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6373) -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5294) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3136) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4215) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2057) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 977) -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 64355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65434) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63276) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61117) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62197) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 60038) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58959) -> [ 5000 ps] RD @ (4, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57880) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55721) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56801) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 54642) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53563) -> [ 5000 ps] RD @ (4, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52484) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50325) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51405) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 49246) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48167) -> [ 5000 ps] RD @ (4, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47088) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44929) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46009) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 43850) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42771) -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41692) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39533) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40613) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 38454) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37375) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36296) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34137) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35217) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33058) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31979) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29820) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30900) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26583) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27662) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 25504) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24424) -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23345) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21187) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22266) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 20108) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19028) -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 15791) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 16870) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14712) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13632) -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12553) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10395) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11474) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9316) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8236) -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4999) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 3920) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2840) -> -[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1761) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65139) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 682) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 64060) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62980) -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60822) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61901) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59743) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57584) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58664) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 56505) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55426) -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54347) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52188) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53268) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 51109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50030) -> -[ 5000 ps] RD @ (4, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48951) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46792) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47872) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 45713) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44634) -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43555) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41396) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 40317) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 39238) -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38159) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 36000) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 34921) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33842) -> [ 5000 ps] RD @ (4, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32763) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30604) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31684) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29525) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28446) -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 26287) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27367) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25208) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23050) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24129) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 21971) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20891) -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 19812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 17654) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 18733) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 16575) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15495) -> [ 5000 ps] RD @ (0, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14416) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12258) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13337) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11179) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10099) -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6862) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5783) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4703) -> -[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3624) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1466) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2545) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 387) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64843) -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63764) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61606) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62685) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 60527) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59447) -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 57289) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58368) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56210) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54051) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55131) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 52972) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51893) -> -[ 5000 ps] RD @ (4, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50814) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48655) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49735) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 47576) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46497) -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45418) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43259) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44339) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 42180) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 41101) -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40022) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 37863) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38943) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 36784) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35705) -> [ 5000 ps] RD @ (4, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34626) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32467) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33547) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 31388) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30309) -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29230) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27071) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 25992) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24913) -> -[ 5000 ps] RD @ (4, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 22754) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 23834) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 19517) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 18438) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17358) -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16279) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14121) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15200) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 13042) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11962) -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10883) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8725) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9804) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 7646) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6566) -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5487) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3329) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4408) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 2250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1170) -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 91) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63469) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 62390) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61310) -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60231) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58073) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 56994) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55914) -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 53756) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54835) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52677) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50518) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51598) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 49439) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48360) -> [ 5000 ps] RD @ (4, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47281) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45122) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46202) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 44043) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 42964) -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 41885) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39726) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40806) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 38647) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37568) -> [ 5000 ps] RD @ (4, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36489) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34330) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35410) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 33251) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32172) -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31093) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28934) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 27855) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26776) -> -[ 5000 ps] RD @ (4, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25697) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23538) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24618) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 22459) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21380) -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 19221) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20301) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18142) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15984) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17063) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 14905) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13825) -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12746) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10588) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11667) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 9509) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8429) -> -[ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7350) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5192) -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6271) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (0, 4113) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3033) -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1954) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65332) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 875) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 64253) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 63173) -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 62094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59936) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61015) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 58857) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57777) -> [ 5000 ps] RD @ (0, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56698) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54540) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55619) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53461) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 52381) -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 50223) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51302) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49144) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46985) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48065) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 45906) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44827) -> -[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43748) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41589) -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42669) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (4, 40510) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39431) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38352) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36193) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37273) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 35114) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 34035) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32956) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30797) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 31877) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 29718) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28639) -> [ 5000 ps] RD @ (4, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27560) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25401) -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26481) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 24322) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23243) -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20005) -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21085) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 18926) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17847) -> -[ 5000 ps] RD @ (4, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (4, 15688) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 16768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 14609) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12451) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 13530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 11372) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10292) -> [ 5000 ps] RD @ (0, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9213) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7055) -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8134) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 5976) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4896) -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3817) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1659) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2738) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 65036) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62879) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61799) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62878) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61799) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59641) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60720) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59640) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58562) -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58561) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57483) -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 56403) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57482) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56403) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55324) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54245) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55324) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54244) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53166) -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53165) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52087) -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51007) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52086) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 51007) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49928) -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48849) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 49928) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48848) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47770) -> [ 5000 ps] RD @ (7, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46690) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46690) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45611) -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 45611) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44532) -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43453) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43452) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 42374) -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41294) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42373) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 41294) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40215) -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 40215) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39136) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38057) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39136) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36978) -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 35898) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 36977) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 35898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34819) -> [ 5000 ps] RD @ (3, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 34819) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33740) -> [ 5000 ps] RD @ (3, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32661) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33740) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32660) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31582) -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30502) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 31581) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 30502) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29423) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 29423) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 28344) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27265) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28344) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 27264) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26186) -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25106) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26185) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25106) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24027) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21868) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22948) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 20789) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19710) -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18631) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16472) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 15393) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14314) -> -[ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 12155) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 13235) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 11076) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 8918) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 9997) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 7839) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6759) -> [ 5000 ps] RD @ (3, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5680) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3522) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4601) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 2443) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1363) -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 284) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63662) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 62583) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61503) -> -[ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 60424) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 58266) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59345) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 57187) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56107) -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55028) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 52870) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53949) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 51791) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 50711) -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 49632) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 47474) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 48553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 46395) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45315) -> [ 5000 ps] RD @ (3, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 43157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 44236) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42078) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 39919) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40999) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38840) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37761) -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 36682) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34523) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35603) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33444) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32365) -> [ 5000 ps] RD @ (7, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 31286) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 29127) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 30207) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 28048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26969) -> [ 5000 ps] RD @ (7, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25890) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 23731) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24811) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 22652) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21573) -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 20494) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 18335) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19415) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 17256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16177) -> -[ 5000 ps] RD @ (7, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15098) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 12939) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14019) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 11860) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10781) -> [ 5000 ps] RD @ (7, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 8622) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 9702) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 7543) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 5385) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6464) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 4306) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 3226) -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2147) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 65525) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 64446) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63366) -> -[ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62287) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 60129) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61208) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 59050) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57970) -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56891) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 54733) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55812) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 53654) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 52574) -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 51495) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 49337) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 50416) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 48258) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47178) -> [ 5000 ps] RD @ (3, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46099) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 43941) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45020) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 42862) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41782) -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 39624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40703) -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38545) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 36386) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 37466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35307) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 34228) -> [ 5000 ps] RD @ (7, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 33149) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 30990) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32070) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 29911) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28832) -> [ 5000 ps] RD @ (7, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27753) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 25594) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26674) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 24515) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 23436) -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22357) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20198) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21278) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 19119) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18040) -> -[ 5000 ps] RD @ (7, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16961) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14802) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15882) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 13723) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 12644) -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 11565) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9406) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10486) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 8327) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 7248) -> [ 5000 ps] RD @ (7, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 5089) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6169) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 4010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 1852) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 2931) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 773) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65229) -> -[ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64150) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 61992) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63071) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 60913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59833) -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 56596) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 57675) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 55517) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 54437) -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 53358) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 51200) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 52279) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 50121) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49041) -> [ 5000 ps] RD @ (3, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47962) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45804) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 46883) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 44725) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 43645) -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42566) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 40408) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41487) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39329) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 38249) -> -[ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 36091) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 37170) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 35012) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32853) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 33933) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 31774) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 30695) -> [ 5000 ps] RD @ (7, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29616) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 27457) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28537) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 26378) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25299) -> [ 5000 ps] RD @ (7, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 24220) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 22061) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 23141) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 20982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19903) -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18824) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16665) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17745) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 15586) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14507) -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 13428) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11269) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 12349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 10190) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 9111) -> [ 5000 ps] RD @ (7, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 8032) -> [ 7500 ps] NOP -> --------------------------------- -DONE TEST 2: RANDOM -Number of Operations: 2304 -Time Started: 251670 ns -Time Done: 361760 ns -Average Rate: 47 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 5873) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 6953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -FAILED: Address = 18962385, expected data = 000000000000001f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 361900000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> - - -------- SUMMARY ------- -Number of Writes = 4608 -Number of Reads = 4608 -Number of Success = 4604 -Number of Fails = 4 -Number of Injected Errors = 4 - - - -TEST CALIBRATION -[-]: write_test_address_counter = 500 -[-]: read_test_address_counter = 200 -[-]: correct_read_data = 349 -[-]: wrong_read_data = 0 -$stop called at time : 363250 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 705 -run: Time (s): cpu = 00:00:21 ; elapsed = 00:37:47 . Memory (MB): peak = 2856.781 ; gain = 8.004 ; free physical = 7554 ; free virtual = 13191 -## quit -INFO: xsimkernel Simulation Memory Usage: 237104 KB (Peak: 294900 KB), Simulation CPU Usage: 2264130 ms -INFO: [Common 17-206] Exiting xsim at Sat Jul 27 23:15:08 2024... diff --git a/testbench/xsim/test_ecc_2.sh b/testbench/xsim/test_ecc_2.sh deleted file mode 100755 index e7b0884..0000000 --- a/testbench/xsim/test_ecc_2.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/bash -f -#********************************************************************************************************* -# Vivado (TM) v2022.1 (64-bit) -# -# Filename : ddr3_dimm_micron_sim.sh -# Simulator : Xilinx Vivado Simulator -# Description : Simulation script for compiling, elaborating and verifying the project source files. -# The script will automatically create the design libraries sub-directories in the run -# directory, add the library logical mappings in the simulator setup file, create default -# 'do/prj' file, execute compilation, elaboration and simulation steps. -# -# Generated by Vivado on Sat Jul 27 15:51:00 PST 2024 -# SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 -# -# Tool Version Limit: 2022.04 -# -# usage: ddr3_dimm_micron_sim.sh [-help] -# usage: ddr3_dimm_micron_sim.sh [-lib_map_path] -# usage: ddr3_dimm_micron_sim.sh [-noclean_files] -# usage: ddr3_dimm_micron_sim.sh [-reset_run] -# -#********************************************************************************************************* - -# Set xvlog options -xvlog_opts="--incr --relax -L uvm" - -# Script info -echo -e "ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id)\n" - -# Main steps -run() -{ - check_args $# $1 - setup $1 $2 - compile - elaborate - simulate -} - -# RUN_STEP: -compile() -{ - xvlog $xvlog_opts -prj vlog.prj 2>&1 | tee compile.log -} - -# RUN_STEP: -elaborate() -{ - xelab -generic_top "ECC_ENABLE=2" --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log -} - -# RUN_STEP: -simulate() -{ - xsim ddr3_dimm_micron_sim -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} -tclbatch cmd.tcl -log simulate.log -} - -# STEP: setup -setup() -{ - case $1 in - "-lib_map_path" ) - if [[ ($2 == "") ]]; then - echo -e "ERROR: Simulation library directory path not specified (type \"./ddr3_dimm_micron_sim.sh -help\" for more information)\n" - exit 1 - fi - ;; - "-reset_run" ) - reset_run - echo -e "INFO: Simulation run files deleted.\n" - exit 0 - ;; - "-noclean_files" ) - # do not remove previous data - ;; - * ) - esac - - # Add any setup/initialization commands here:- - - # - -} - -# Delete generated data from the previous run -reset_run() -{ - files_to_remove=(xelab.pb xsim.jou xvhdl.log xvlog.log compile.log elaborate.log simulate.log xelab.log xsim.log run.log xvhdl.pb xvlog.pb ddr3_dimm_micron_sim.wdb xsim.dir) - for (( i=0; i<${#files_to_remove[*]}; i++ )); do - file="${files_to_remove[i]}" - if [[ -e $file ]]; then - rm -rf $file - fi - done -} - -# Check command line arguments -check_args() -{ - if [[ ($1 == 1 ) && ($2 != "-lib_map_path" && $2 != "-noclean_files" && $2 != "-reset_run" && $2 != "-help" && $2 != "-h") ]]; then - echo -e "ERROR: Unknown option specified '$2' (type \"./ddr3_dimm_micron_sim.sh -help\" for more information)\n" - exit 1 - fi - - if [[ ($2 == "-help" || $2 == "-h") ]]; then - usage - fi -} - -# Script usage -usage() -{ - msg="Usage: ddr3_dimm_micron_sim.sh [-help]\n\ -Usage: ddr3_dimm_micron_sim.sh [-lib_map_path]\n\ -Usage: ddr3_dimm_micron_sim.sh [-reset_run]\n\ -Usage: ddr3_dimm_micron_sim.sh [-noclean_files]\n\n\ -[-help] -- Print help information for this script\n\n\ -[-lib_map_path ] -- Compiled simulation library directory path. The simulation library is compiled\n\ -using the compile_simlib tcl command. Please see 'compile_simlib -help' for more information.\n\n\ -[-reset_run] -- Recreate simulator setup files and library mappings for a clean run. The generated files\n\ -from the previous run will be removed. If you don't want to remove the simulator generated files, use the\n\ --noclean_files switch.\n\n\ -[-noclean_files] -- Reset previous run, but do not remove simulator generated files from the previous run.\n\n" - echo -e $msg - exit 1 -} - -# Launch script -run $1 $2 diff --git a/testbench/xsim/test_ecc_3.log b/testbench/xsim/test_ecc_3.log deleted file mode 100644 index dd7fc60..0000000 --- a/testbench/xsim/test_ecc_3.log +++ /dev/null @@ -1,23435 +0,0 @@ -ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id) - -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_controller.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_controller -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_phy -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_top.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_top -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3 -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ecc/ecc_dec.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ecc_dec -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/rtl/ecc/ecc_enc.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ecc_enc -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_dimm_micron_sim -INFO: [VRFC 10-2263] Analyzing SystemVerilog file "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module ddr3_module -INFO: [VRFC 10-2263] Analyzing Verilog file "/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v" into library xil_defaultlib -INFO: [VRFC 10-311] analyzing module glbl -Vivado Simulator v2022.1 -Copyright 1986-1999, 2001-2022 Xilinx, Inc. All Rights Reserved. -Running: /tools/Xilinx/Vivado/2022.1/bin/unwrapped/lnx64.o/xelab -generic_top ECC_ENABLE=3 --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log -Multi-threading is on. Using 14 slave threads. -Starting static elaboration -Pass Through NonSizing Optimizer -WARNING: [VRFC 10-3532] module 'glbl' does not have a parameter named 'ECC_ENABLE' to override [/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v:6] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:202] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:203] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:205] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:206] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:207] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:208] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:209] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:211] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:263] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:264] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:266] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:267] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:268] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:269] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:270] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:272] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:366] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:367] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:369] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:370] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:371] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:372] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:644] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:645] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:647] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:648] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:649] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:650] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:651] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:799] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:800] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:802] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:803] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:804] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:805] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1143] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'SHIFTIN2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1144] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T1' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1146] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T2' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1147] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T3' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1148] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'T4' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1149] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TBYTEIN' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1150] -WARNING: [VRFC 10-3091] actual bit length 32 differs from formal bit length 1 for port 'TCE' [/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v:1152] -WARNING: [VRFC 10-3091] actual bit length 1 differs from formal bit length 2 for port 'ck' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:248] -WARNING: [VRFC 10-3091] actual bit length 1 differs from formal bit length 2 for port 'ck_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:249] -WARNING: [VRFC 10-3091] actual bit length 8 differs from formal bit length 18 for port 'dqs_n' [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:259] -WARNING: [VRFC 10-5021] port 'scl' is not connected on this instance [/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv:246] -Completed static elaboration -Starting simulation data flow analysis -Completed simulation data flow analysis -Time Resolution for simulation is 1ps -Compiling module xil_defaultlib.ecc_enc(K=64,P0_LSB=0) -Compiling module xil_defaultlib.ecc_dec(K=64,P0_LSB=0) -Compiling module xil_defaultlib.ddr3_controller(ROW_BITS=16,LANE... -Compiling module unisims_ver.OSERDESE2(DATA_RATE_OQ="SDR",DAT... -Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="SDR",DAT... -Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.OBUFDS -Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... -Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.IOBUF(IBUF_LOW_PWR="FALSE",SLEW=... -Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... -Compiling module unisims_ver.OBUF(SLEW="FAST") -Compiling module unisims_ver.OSERDESE2(DATA_RATE_TQ="BUF",DAT... -Compiling module unisims_ver.ODELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.IOBUFDS(IBUF_LOW_PWR="FALSE") -Compiling module unisims_ver.IDELAYE2(HIGH_PERFORMANCE_MODE="... -Compiling module unisims_ver.ISERDESE2(DATA_WIDTH=8,INTERFACE... -Compiling module unisims_ver.IDELAYCTRL_default -Compiling module unisims_ver.DCIRESET -Compiling module xil_defaultlib.ddr3_phy(ROW_BITS=16,ODELAY_SUPP... -Compiling module xil_defaultlib.ddr3_top(CONTROLLER_CLK_PERIOD=1... -Compiling module xil_defaultlib.ddr3_default -Compiling module xil_defaultlib.ddr3_module_default -Compiling module xil_defaultlib.ddr3_dimm_micron_sim -Compiling module xil_defaultlib.glbl -Built simulation snapshot ddr3_dimm_micron_sim - -****** xsim v2022.1 (64-bit) - **** SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 - **** IP Build 3524634 on Mon Apr 18 20:55:01 MDT 2022 - ** Copyright 1986-2022 Xilinx, Inc. All Rights Reserved. - -source xsim.dir/ddr3_dimm_micron_sim/xsim_script.tcl -# xsim {ddr3_dimm_micron_sim} -autoloadwcfg -tclbatch {cmd.tcl} -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} -Time resolution is 1 ps -source cmd.tcl -## set curr_wave [current_wave_config] -## if { [string length $curr_wave] == 0 } { -## if { [llength [get_objects]] > 0} { -## add_wave / -## set_property needs_save false [current_wave_config] -## } else { -## send_msg_id Add_Wave-1 WARNING "No top level signals found. Simulator will start without a wave window. If you want to open a wave window go to 'File->New Waveform Configuration' or type 'create_wave_config' in the TCL console." -## } -## } -## run -all - -CONTROLLER PARAMETERS: ------------------------------ -CONTROLLER_CLK_PERIOD = 10000 -DDR3_CLK_PERIOD = 2500 -ROW_BITS = 16 -COL_BITS = 10 -BA_BITS = 3 -BYTE_LANES = 8 -AUX_WIDTH = 16 -MICRON_SIM = 1 -ODELAY_SUPPORTED = 1 -SECOND_WISHBONE = 0 -WB2_ADDR_BITS = 7 -WB2_DATA_BITS = 32 -ECC_ENABLE = 3 -ECC_INFORMATION_BITS = 57 -WB_ERROR = 0 - -CONTROLLER LOCALPARAMS: ------------------------------ -wb_addr_bits = 26 -wb_data_bits = 512 -wb_sel_bits = 64 -wb2_sel_bits = 4 -DQ_BITS = 8 -row_bank_col = 2 - -COMMAND SLOTS: ------------------------------ -READ_SLOT = 2 -WRITE_SLOT = 3 -ACTIVATE_SLOT = 0 -PRECHARGE_SLOT = 1 -REMAINING_SLOT = 0 - -DELAYS: ------------------------------ -CL = 6 -CWL = 5 -PRECHARGE_TO_ACTIVATE_DELAY = 1 -ACTIVATE_TO_WRITE_DELAY = 0 -ACTIVATE_TO_READ_DELAY = 0 -ACTIVATE_TO_PRECHARGE_DELAY = 3 -READ_TO_WRITE_DELAY = 1 -READ_TO_READ_DELAY = 0 -READ_TO_PRECHARGE_DELAY = 1 -WRITE_TO_WRITE_DELAY = 0 -WRITE_TO_READ_DELAY = 3 -WRITE_TO_PRECHARGE_DELAY = 4 -STAGE2_DATA_DEPTH = 2 -READ_ACK_PIPE_WIDTH = 6 - -ddr3_dimm_micron_sim.ddr3_module.U1R0.file_io_open: at time 0 WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U2R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U3R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U4R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U6R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U7R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U8R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -ddr3_dimm_micron_sim.ddr3_module.U9R0.file_io_open: at time 0.0 ps WARNING: no +model_data option specified, using /tmp. -[x ps] MRS -> Timing Violation Error : The low pulse of RST signal at time 20.000 ns in DCIRESET has to be greater than 100 ns -Timing Violation Error : The high pulse of RST signal at time 90.000 ns in DCIRESET has to be greater than 100 ns -[110724 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U2R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U3R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U4R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U6R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U7R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U8R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -ddr3_dimm_micron_sim.ddr3_module.U9R0.reset at time 510100.0 ps WARNING: 200 us is required before RST_N goes inactive. -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task at time 1521324.0 ps WARNING: 500 us is required after RST_N goes inactive before CKE goes active. -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] MRS -> ddr3_dimm_micron_sim.ddr3_module.U1R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U2R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U3R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U4R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U6R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U7R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U8R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -ddr3_dimm_micron_sim.ddr3_module.U9R0.cmd_task: at time 1893824.0 ps WARNING: Load Mode 2 Auto Self Refresh is not modeled -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] ZQC -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 136991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 136991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U2R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 137991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 137991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 137991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U3R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U4R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 138991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 138991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U6R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139521324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139531324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139541324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139551324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139561324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139741324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139741402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139751324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139751402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139761324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139761402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139771324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139771402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139951324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139951402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139961324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139961402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139971324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139971402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139981324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139981402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 139991324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 139991402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U7R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140171324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140171402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140181324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140181402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140191324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140191402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140201324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140201402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140211324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140211402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140391324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140391402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140401324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140401402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140411324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140411402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140421324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140421402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140431324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140441324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140451324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140461324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140471324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140481324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140491324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140501324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140511324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140571324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140581324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140591324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140601324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140601402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140611324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140611402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140621324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140621402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140631324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140631402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140641324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140641402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140651324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140651402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140661324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140661402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140671324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140671402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140681324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140681402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140691324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140691402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140701324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140701402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140711324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140711402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140721324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140721402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U8R0.main: at time 140731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140731324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140731402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140781324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140781402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140791324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140791402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140801324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140801402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140811324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140811402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140821324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140821402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140831324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140831402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140841324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140841402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140851324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140851402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140861324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140861402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140871324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140871402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140881324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140881402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140891324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140891402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140901324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140901402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140911324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140911402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140921324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140921402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140931324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140931402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 140941324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 140941402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141001324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141001402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141011324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141011402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141021324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141021402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141031324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141031402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141041324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141041402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141051324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141051402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141061324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141061402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141071324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141071402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141081324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141081402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141091324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141091402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141101324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141101402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141111324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141111402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141121324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141121402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141131324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141131402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141141324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141141402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141151324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141151402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141161324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141161402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141221324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141221402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141231324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141231402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141241324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141241402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141251324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141251402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141261324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141261402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141271324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141271402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141281324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141281402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141291324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141291402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141301324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141301402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141311324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141311402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141321324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141321402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141331324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141331402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141341324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141341402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141351324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141351402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141361324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141361402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141371324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141371402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U9R0.main: at time 141381324.0 ps WARNING: tWLH violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141381402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141431402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141441402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141451402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141461402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141471402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141481402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141491402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141501402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141511402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141521402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141531402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141541402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141551402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> -ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141561402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141571402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141581402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> -[ 2500 ps] NOP -> ddr3_dimm_micron_sim.ddr3_module.U1R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U2R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U3R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U4R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U6R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U7R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U8R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -ddr3_dimm_micron_sim.ddr3_module.U9R0.dqs_pos_timing_check: at time 141591402.0 ps WARNING: tWLS violation on DQS bit 0 positive edge. Indeterminate CK capture is possible. -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] MRS -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] ACT @ (7, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 400) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32968) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 404) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32970) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 408) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32972) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 412) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32974) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 416) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32976) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 420) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32978) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32980) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 428) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32982) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 432) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32984) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 436) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32986) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 440) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32988) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 444) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32990) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 448) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32992) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 452) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32994) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 456) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32996) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 460) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32998) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 464) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33000) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 468) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33002) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 472) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 476) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33006) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 480) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33008) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 484) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33010) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 488) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33012) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 492) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33014) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 496) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33016) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 500) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33018) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33020) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 508) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33022) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 512) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33024) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 516) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33026) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 520) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33028) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 524) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33030) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 528) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33032) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33034) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 536) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33036) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 540) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33038) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 544) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33040) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 548) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33042) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 552) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33044) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 556) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33046) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 560) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33048) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 564) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33050) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 568) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33052) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 572) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33054) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 576) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33056) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33058) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 584) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33060) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 588) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33062) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 592) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33064) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 596) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33066) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 600) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33068) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 604) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33070) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 608) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33072) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 612) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33074) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 616) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33076) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 620) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33078) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 624) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33080) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 628) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33082) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 632) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33084) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 636) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33086) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 640) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33088) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 644) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33090) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 648) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33092) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 652) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33094) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 656) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33096) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 660) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33098) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 664) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 668) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33100) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33102) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 672) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33104) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 676) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33106) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 680) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33108) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 684) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33110) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 688) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33112) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 692) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33114) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 696) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33116) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 700) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33118) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 704) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33120) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 708) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33122) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 712) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33124) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 716) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33126) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 720) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33128) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 724) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33130) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 728) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33132) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 732) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33134) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 736) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33136) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 740) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33138) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 744) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33140) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 748) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33142) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 752) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33144) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 756) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33146) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 760) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33148) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 764) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33150) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 768) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33152) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 772) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33154) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 776) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33156) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 780) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33158) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 784) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33160) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 788) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33162) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 792) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33164) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 796) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33166) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 400) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32968) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32970) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 404) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32972) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 408) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32974) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 412) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 32976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 416) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32978) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 420) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32980) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 424) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32982) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 428) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32984) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 432) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 32986) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 436) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32988) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 440) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32990) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 444) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32992) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 448) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32994) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 452) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 32996) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 456) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32998) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 460) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33000) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 464) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33002) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 468) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33004) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 472) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33006) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 476) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33008) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 480) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33010) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 484) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33012) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 488) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33014) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 492) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33016) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 496) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33018) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 500) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33020) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 504) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33022) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 508) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33024) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 512) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33026) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 516) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33028) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 520) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33030) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 524) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33032) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 528) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33034) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 532) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33036) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 536) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33038) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 540) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 544) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33042) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 548) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33044) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 552) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33046) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 556) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 560) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33050) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 564) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33052) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 568) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33054) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 572) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33056) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 576) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33058) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 580) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33060) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 584) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33062) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 588) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33064) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 592) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33066) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 596) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33068) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 600) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33070) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 604) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33072) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 608) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33074) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 612) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33076) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 616) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33078) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 620) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33080) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 624) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33082) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 628) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33084) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 632) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33086) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 636) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33088) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 640) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33090) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 644) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33092) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 648) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33094) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 652) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33096) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 656) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33098) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 660) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33100) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 664) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33102) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 668) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33104) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 672) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33106) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 676) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33108) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 680) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33110) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 684) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33112) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 688) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33114) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 692) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33116) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 696) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33118) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 700) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33120) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 704) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33122) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 708) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33124) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 712) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33126) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 716) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33128) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 720) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33130) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 724) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33132) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 728) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33134) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 732) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33136) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 736) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33138) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 740) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33140) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 744) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 748) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33142) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33144) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 752) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33146) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 756) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33148) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 760) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33150) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 764) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33152) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 768) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33154) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 772) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33156) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 776) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33158) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 780) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33160) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 784) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33162) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 788) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33164) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 792) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33166) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 796) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32768) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 0) -> [ 2500 ps] ACT @ (6, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (6, 32768) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> -[ 2500 ps] ACT @ (7, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] WR @ (1, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 984) -> [ 2500 ps] ACT @ (0, 2) -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 2) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32769) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 2) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] ACT @ (6, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> -[ 2500 ps] ACT @ (0, 3) -> [ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> -[ 2500 ps] ACT @ (7, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> -[ 2500 ps] ACT @ (1, 3) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] ACT @ (0, 4) -> -[ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32770) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> -[ 2500 ps] ACT @ (1, 4) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> -[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32768) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2) -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 2) -> [ 5000 ps] RD @ (0, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3) -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 3) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 32769) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4) -> [ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32770) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 4) -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 204520000.0 ps -[ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> --------------------------------- -DONE TEST 1: FIRST ROW -Number of Operations: 2304 -Time Started: 175720 ns -Time Done: 205440 ns -Average Rate: 12 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32768) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 0) -> -[ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] ACT @ (6, 32768) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] ACT @ (7, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 1) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 984) -> [ 2500 ps] ACT @ (0, 2) -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 2) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32769) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] WR @ (1, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] ACT @ (0, 3) -> [ 7500 ps] WR @ (1, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (0, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 3) -> [ 7500 ps] WR @ (0, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (6, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 3) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 312) -> -[ 2500 ps] ACT @ (6, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] ACT @ (0, 4) -> [ 7500 ps] WR @ (1, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 56) -> [ 2500 ps] ACT @ (7, 32770) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] WR @ (0, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 984) -> [ 2500 ps] ACT @ (1, 4) -> [ 7500 ps] WR @ (0, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] ACT @ (0, 0) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 0) -> -[ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (1, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> -[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] RD @ (7, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 1) -> [ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (6, 32768) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 2) -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 2) -> [ 5000 ps] RD @ (0, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 32769) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (1, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 3) -> [ 5000 ps] RD @ (1, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 3) -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (1, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 4) -> -[ 5000 ps] RD @ (1, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32770) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] RD @ (0, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 32770) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 4) -> -[ 5000 ps] RD @ (0, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 1151, expected data = cbe09c97cbdf8e97cbde8097cbdd7297cbdc6497cbdb5697cbda4897cbd93a97cbd82c97cbd71e97cbd61297cbd50497cbd3f697cbd2e897cbd1da97cbd0cc97, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 234800000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> --------------------------------- -DONE TEST 1: MIDDLE ROW -Number of Operations: 2304 -Time Started: 205440 ns -Time Done: 235720 ns -Average Rate: 13 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32764) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] ACT @ (3, 32764) -> [ 7500 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] ACT @ (6, 49150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] WR @ (3, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] ACT @ (2, 32765) -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] WR @ (2, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 984) -> [ 2500 ps] ACT @ (3, 32765) -> [ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32765) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] ACT @ (6, 49150) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] ACT @ (2, 32766) -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] ACT @ (7, 49151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] WR @ (2, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] ACT @ (3, 32766) -> [ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49151) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] ACT @ (2, 32767) -> [ 7500 ps] WR @ (3, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 640) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 680) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] WR @ (2, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] ACT @ (3, 32767) -> [ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 376) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 512) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 552) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 584) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 712) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 656) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 696) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 728) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 800) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 832) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 904) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 944) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] ACT @ (2, 32768) -> [ 7500 ps] WR @ (3, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49152) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 248) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 520) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 544) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 560) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 568) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 576) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 648) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 672) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 688) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 704) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 768) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 776) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 808) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 816) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 840) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 888) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 896) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 936) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 952) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] WR @ (2, 976) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 984) -> [ 2500 ps] ACT @ (3, 32768) -> [ 7500 ps] WR @ (2, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 1016) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32764) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49152) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 49150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32764) -> [ 5000 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 49150) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32765) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 2500 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (3, 32765) -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32766) -> [ 5000 ps] RD @ (3, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 49151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 2500 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32766) -> [ 5000 ps] RD @ (2, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 49151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] RD @ (3, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32766) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (6, 49151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32767) -> [ 5000 ps] RD @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (7, 49151) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 2500 ps] RD @ (2, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32767) -> -[ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 32768) -> [ 5000 ps] RD @ (3, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49152) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 2500 ps] RD @ (2, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 32768) -> [ 5000 ps] RD @ (2, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 25165951, expected data = c06d5c80c06c4e80c06b4080c06a3280c0692480c0681680c0670880c065fa80c064ec80c063de80c062d280c061c480c060b680c05fa880c05e9a80c05d8c80, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 264040000.0 ps -[ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> --------------------------------- -DONE TEST 1: LAST ROW -Number of Operations: 2304 -Time Started: 235720 ns -Time Done: 264960 ns -Average Rate: 12 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11410) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 38473) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7092) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36314) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (0, 2776) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 63994) -> [ 7500 ps] WR @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34156) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 120) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64765) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 59678) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62607) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 55362) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60449) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51044) -> [ 7500 ps] WR @ (7, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58290) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 46728) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56132) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 42410) -> -[ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53973) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 38094) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51815) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 33778) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49657) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 29460) -> [ 7500 ps] WR @ (7, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47498) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 25144) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45340) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 20826) -> -[ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43181) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 16510) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41023) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 12194) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38865) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 7876) -> [ 7500 ps] WR @ (7, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36706) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 3560) -> [ 7500 ps] WR @ (7, 496) -> [ 2500 ps] ACT @ (4, 64778) -> -[ 7500 ps] WR @ (6, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 496) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60462) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65157) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62999) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56146) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60841) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 51828) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58682) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47512) -> [ 7500 ps] WR @ (7, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56524) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54365) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38878) -> -[ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52207) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34562) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50049) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 30244) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47890) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25928) -> [ 7500 ps] WR @ (7, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45732) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21610) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43573) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17294) -> -[ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41415) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12978) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39257) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 8660) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37098) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4344) -> [ 7500 ps] WR @ (7, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34940) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26) -> [ 7500 ps] WR @ (7, 368) -> [ 2500 ps] ACT @ (2, 61246) -> [ 7500 ps] WR @ (4, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32781) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63391) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 56928) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61232) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52612) -> -[ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59074) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 48296) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56916) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 43978) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54757) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 39662) -> [ 7500 ps] WR @ (7, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52599) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 35344) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50440) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 31028) -> -[ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48282) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 26712) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46124) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 22394) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43965) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 18078) -> [ 7500 ps] WR @ (7, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41807) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 13760) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39648) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 9444) -> -[ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37490) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 5128) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35332) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 810) -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] ACT @ (0, 62030) -> [ 7500 ps] WR @ (2, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33173) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63783) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 57712) -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53396) -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59466) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49080) -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57308) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44762) -> -[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 55149) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40446) -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52991) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 36128) -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31812) -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48674) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27496) -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46516) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23178) -> -[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 44357) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18862) -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42199) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 14544) -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10228) -> [ 7500 ps] WR @ (7, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37882) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5912) -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35724) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1594) -> -[ 7500 ps] WR @ (7, 112) -> [ 2500 ps] ACT @ (6, 62814) -> [ 7500 ps] WR @ (0, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33565) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 112) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64175) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58496) -> -[ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62016) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54180) -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59858) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 49862) -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57699) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 45546) -> [ 7500 ps] WR @ (7, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55541) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 41230) -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53383) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36912) -> -[ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51224) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32596) -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49066) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 28278) -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46907) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 23962) -> [ 7500 ps] WR @ (7, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44749) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 19646) -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42591) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 15328) -> -[ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40432) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 11012) -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38274) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 6694) -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36115) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 2378) -> [ 7500 ps] WR @ (7, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 63598) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33957) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 488) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64567) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59280) -> -[ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62408) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54964) -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60250) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 50646) -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58091) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46330) -> [ 7500 ps] WR @ (7, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55933) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42014) -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53775) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37696) -> -[ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33380) -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49458) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29062) -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24746) -> [ 7500 ps] WR @ (7, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45141) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20430) -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42983) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16112) -> -[ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40824) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11796) -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38666) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 7478) -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3162) -> [ 7500 ps] WR @ (7, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] WR @ (4, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 64382) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34349) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 360) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64959) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 60064) -> -[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62800) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 55748) -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60642) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 51430) -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58483) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47114) -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56325) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 42796) -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54166) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 38480) -> -[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52008) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 34164) -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49850) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 29846) -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47691) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 25530) -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45533) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 21212) -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43374) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 16896) -> -[ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41216) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 12580) -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39058) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 8262) -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36899) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 3946) -> [ 7500 ps] WR @ (7, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (2, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 65164) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34741) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 232) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65350) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60848) -> -[ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 63192) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56532) -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61034) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 52214) -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58875) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47898) -> [ 7500 ps] WR @ (7, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56717) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43580) -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54558) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39264) -> -[ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52400) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34948) -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50242) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30630) -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48083) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26314) -> -[ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 21996) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45925) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43766) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17680) -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41608) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 13364) -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39450) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9046) -> [ 7500 ps] WR @ (7, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37291) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4730) -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35133) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 412) -> -[ 7500 ps] WR @ (7, 104) -> [ 2500 ps] ACT @ (6, 61632) -> [ 7500 ps] WR @ (0, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32974) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 104) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63584) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 57316) -> -[ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61426) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52998) -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59267) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 48682) -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 44364) -> [ 7500 ps] WR @ (7, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54950) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 40048) -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52792) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 35730) -> -[ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50633) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 31414) -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48475) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 27098) -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46317) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 22780) -> [ 7500 ps] WR @ (7, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44158) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 18464) -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42000) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 14146) -> -[ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39841) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 9830) -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37683) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 5514) -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35525) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 1196) -> [ 7500 ps] WR @ (7, 480) -> -[ 2500 ps] ACT @ (4, 62416) -> [ 7500 ps] WR @ (6, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33366) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 480) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58098) -> [ 7500 ps] WR @ (7, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61817) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53782) -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59659) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49466) -> -[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57501) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45148) -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55342) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40832) -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53184) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36514) -> [ 7500 ps] WR @ (7, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51025) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32198) -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48867) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27882) -> -[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46709) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23564) -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44550) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 19248) -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42392) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14930) -> [ 7500 ps] WR @ (7, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40233) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10614) -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38075) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6298) -> -[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35917) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1980) -> [ 7500 ps] WR @ (7, 352) -> [ 2500 ps] ACT @ (2, 63200) -> -[ 7500 ps] WR @ (4, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33758) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 352) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64368) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 58882) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62209) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 54566) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60051) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 50250) -> [ 7500 ps] WR @ (7, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57893) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 45932) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55734) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 41616) -> -[ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53576) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 37298) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51417) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 32982) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49259) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 28664) -> [ 7500 ps] WR @ (7, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47100) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 24348) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44942) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 20032) -> -[ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 42784) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 15714) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40625) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 11398) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38467) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 7080) -> [ 7500 ps] WR @ (7, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36308) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 2764) -> [ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] WR @ (2, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63984) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34150) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 224) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64760) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59666) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62601) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 55350) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51032) -> [ 7500 ps] WR @ (7, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58284) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46716) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56126) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42400) -> -[ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53968) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38082) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51809) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 33766) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49651) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29448) -> [ 7500 ps] WR @ (7, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47492) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25132) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45334) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20816) -> -[ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43176) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16498) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41017) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12182) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38859) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7864) -> [ 7500 ps] WR @ (7, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36700) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3548) -> [ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] WR @ (0, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 64768) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34542) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 96) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 65152) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60450) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62993) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 56134) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60835) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51816) -> [ 7500 ps] WR @ (7, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58676) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47500) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56518) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43184) -> -[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54360) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 38866) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52201) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 34550) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 30232) -> [ 7500 ps] WR @ (7, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47884) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 25916) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45726) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 21598) -> -[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43567) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 17282) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41409) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 12966) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39251) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 8648) -> [ 7500 ps] WR @ (7, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37092) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 4332) -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34934) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 14) -> -[ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 61234) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32775) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63385) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 56918) -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61227) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52600) -> [ 7500 ps] WR @ (7, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59068) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48284) -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56910) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43966) -> -[ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54751) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39650) -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52593) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 35334) -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50435) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31016) -> [ 7500 ps] WR @ (7, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48276) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26700) -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46118) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22382) -> -[ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43959) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18066) -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41801) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 13750) -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39643) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9432) -> [ 7500 ps] WR @ (7, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37484) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5116) -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35326) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 798) -> -[ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] WR @ (4, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 62018) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33167) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63777) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 57702) -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61619) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 53384) -> -[ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 49068) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59460) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57302) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 44750) -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55143) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 40434) -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52985) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 36118) -> [ 7500 ps] WR @ (7, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 728) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50827) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 31800) -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48668) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 27484) -> -[ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46510) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 23166) -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44351) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 18850) -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42193) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 14532) -> [ 7500 ps] WR @ (7, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40034) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 10216) -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37876) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 5900) -> -[ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35718) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 1582) -> [ 7500 ps] WR @ (7, 216) -> [ 2500 ps] ACT @ (0, 62802) -> -[ 7500 ps] WR @ (2, 720) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33559) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 216) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64169) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58484) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62010) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54168) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59852) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49852) -> [ 7500 ps] WR @ (7, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57694) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45534) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55535) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41218) -> -[ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53377) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36900) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 712) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51218) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32584) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49060) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28268) -> [ 7500 ps] WR @ (7, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46902) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23950) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44743) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19634) -> -[ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 42585) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15316) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40426) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 11000) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38268) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6684) -> [ 7500 ps] WR @ (7, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 704) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36110) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2366) -> [ 7500 ps] WR @ (7, 88) -> [ 2500 ps] ACT @ (6, 63586) -> [ 7500 ps] WR @ (0, 704) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33951) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64561) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 59268) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62402) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54952) -> -[ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 50636) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58086) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 46318) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55927) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 42002) -> [ 7500 ps] WR @ (7, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53769) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 37684) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51610) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33368) -> -[ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 696) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49452) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 29052) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47294) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 24734) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45135) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 20418) -> [ 7500 ps] WR @ (7, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42977) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 16100) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40818) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 11784) -> -[ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38660) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 7466) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36501) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 3150) -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] ACT @ (4, 64370) -> [ 7500 ps] WR @ (6, 688) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 34343) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64953) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60052) -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62794) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55736) -> [ 7500 ps] WR @ (7, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60636) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51418) -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58477) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47102) -> -[ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56319) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42786) -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54161) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 38468) -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52002) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34152) -> [ 7500 ps] WR @ (7, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 680) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49844) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29834) -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47685) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25518) -> -[ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 45527) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21202) -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43369) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 16884) -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41210) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12568) -> [ 7500 ps] WR @ (7, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39052) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8250) -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 672) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36893) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3934) -> -[ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] WR @ (4, 672) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 65154) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 34735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65345) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 60836) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63186) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 56520) -> [ 7500 ps] WR @ (7, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61028) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52202) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58869) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47886) -> -[ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56711) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 43570) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54553) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 39252) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52394) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 34936) -> [ 7500 ps] WR @ (7, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 664) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50236) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 30618) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48077) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 26302) -> -[ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 45919) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 21986) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43761) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 17668) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41602) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 13352) -> [ 7500 ps] WR @ (7, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39444) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 9034) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37285) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 4718) -> -[ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35127) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 400) -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (2, 656) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61620) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32968) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 208) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57304) -> [ 7500 ps] WR @ (7, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61420) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52986) -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59261) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48670) -> -[ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57103) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44352) -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54944) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40036) -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52786) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35720) -> [ 7500 ps] WR @ (7, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 648) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50628) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31402) -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48469) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27086) -> -[ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46311) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22768) -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44152) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 18452) -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41994) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14136) -> [ 7500 ps] WR @ (7, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39836) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9818) -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37677) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5502) -> -[ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35519) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1184) -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] WR @ (0, 640) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 62404) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33360) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 80) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63970) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58088) -> [ 7500 ps] WR @ (7, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61812) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 53770) -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59653) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49454) -> -[ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57495) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 45136) -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55336) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 40820) -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53178) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36504) -> [ 7500 ps] WR @ (7, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51020) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32186) -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48861) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 27870) -> -[ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46703) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 23552) -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44544) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 19236) -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42386) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 14920) -> -[ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 10602) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40228) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38069) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 6286) -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35911) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 1968) -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] ACT @ (4, 63188) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33752) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64362) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 58870) -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62203) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54554) -> [ 7500 ps] WR @ (7, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60045) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50238) -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57887) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45920) -> -[ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 55728) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41604) -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53570) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 37286) -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51411) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32970) -> [ 7500 ps] WR @ (7, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 616) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49253) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28654) -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47095) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24336) -> -[ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 44936) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20020) -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42778) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 15702) -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40619) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11386) -> [ 7500 ps] WR @ (7, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38461) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7070) -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36303) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2752) -> -[ 7500 ps] WR @ (7, 328) -> [ 2500 ps] ACT @ (2, 63972) -> [ 7500 ps] WR @ (4, 608) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34144) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 328) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 59654) -> -[ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62595) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 55338) -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60437) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 51022) -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58279) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 46704) -> [ 7500 ps] WR @ (7, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56120) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 42388) -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53962) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 38070) -> -[ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51803) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 33754) -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 600) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49645) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 29438) -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47487) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 25120) -> [ 7500 ps] WR @ (7, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45328) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 20804) -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 16486) -> -[ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41011) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 12170) -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38853) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 7854) -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36695) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 3536) -> [ 7500 ps] WR @ (7, 200) -> -[ 2500 ps] ACT @ (0, 64756) -> [ 7500 ps] WR @ (2, 592) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34536) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 200) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65146) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60438) -> [ 7500 ps] WR @ (7, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62987) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56122) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60829) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51804) -> -[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58670) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47488) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56512) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 43172) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54354) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38854) -> [ 7500 ps] WR @ (7, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52195) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34538) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 584) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50037) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30220) -> -[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47878) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25904) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45720) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 21588) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43562) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17270) -> [ 7500 ps] WR @ (7, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41403) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12954) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39245) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8636) -> -[ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37086) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4320) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 576) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34928) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 4) -> [ 7500 ps] WR @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] WR @ (0, 576) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 61222) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32770) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63379) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 56906) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61221) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52588) -> -[ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59062) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 48272) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56904) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 43956) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54746) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 39638) -> [ 7500 ps] WR @ (7, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52587) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 35322) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 568) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50429) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 31004) -> -[ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48270) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 26688) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46112) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 22372) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43954) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 18054) -> [ 7500 ps] WR @ (7, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41795) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 13738) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39637) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 9420) -> -[ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37478) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 5104) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 560) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35320) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 788) -> [ 7500 ps] WR @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] WR @ (6, 560) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62006) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33162) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63771) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57690) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61613) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53372) -> -[ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59454) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49056) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57296) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 44738) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55137) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40422) -> [ 7500 ps] WR @ (7, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52979) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36106) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 552) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50821) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31788) -> -[ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48662) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27472) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46504) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 23154) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44345) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18838) -> [ 7500 ps] WR @ (7, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42187) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14522) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40029) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10204) -> -[ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37870) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5888) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 544) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35712) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 1570) -> [ 7500 ps] WR @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] WR @ (4, 544) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 62790) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33553) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64163) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 58474) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62005) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 54156) -> -[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59846) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 49840) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57688) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 45522) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55529) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 41206) -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53371) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 36890) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 536) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51213) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32572) -> -[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49054) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 28256) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46896) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 23938) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44737) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 19622) -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42579) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 15306) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40421) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 10988) -> -[ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38262) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 6672) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 528) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36104) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 2354) -> [ 7500 ps] WR @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (2, 528) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63574) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33945) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64555) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59258) -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62397) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54940) -> -[ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60238) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50624) -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58080) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46306) -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55921) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41990) -> -[ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37672) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53763) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51604) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33356) -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 520) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49446) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 29040) -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47288) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24722) -> [ 7500 ps] WR @ (7, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45129) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20406) -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42971) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16088) -> -[ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40812) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11772) -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38654) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 7456) -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36496) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3138) -> [ 7500 ps] WR @ (7, 64) -> -[ 2500 ps] ACT @ (6, 64358) -> [ 7500 ps] WR @ (0, 512) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34337) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 64) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64947) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60040) -> [ 7500 ps] WR @ (7, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62788) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 55724) -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60630) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51408) -> -[ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58472) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47090) -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56313) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 42774) -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 38456) -> [ 7500 ps] WR @ (7, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51996) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34140) -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 504) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49838) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 29824) -> -[ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47680) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 25506) -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45521) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 21190) -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43363) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 16872) -> [ 7500 ps] WR @ (7, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41204) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 12556) -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39046) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 8240) -> -[ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36888) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 3922) -> [ 7500 ps] WR @ (7, 440) -> [ 2500 ps] ACT @ (4, 65142) -> -[ 7500 ps] WR @ (6, 496) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34729) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 440) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 65339) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60824) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63180) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 56508) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61022) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52192) -> [ 7500 ps] WR @ (7, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58864) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47874) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56705) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43558) -> -[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54547) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39240) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52388) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34924) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 488) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50230) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30606) -> [ 7500 ps] WR @ (7, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48071) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26290) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21974) -> -[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43755) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17656) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41596) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 13340) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39438) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9022) -> [ 7500 ps] WR @ (7, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37279) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4706) -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 480) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35121) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 390) -> -[ 7500 ps] WR @ (7, 312) -> [ 2500 ps] ACT @ (2, 61608) -> [ 7500 ps] WR @ (4, 480) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32963) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 312) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63572) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 57292) -> -[ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61414) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52974) -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59255) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 48658) -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57097) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 44342) -> [ 7500 ps] WR @ (7, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54939) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 40024) -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52780) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 35708) -> -[ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 472) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50622) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 31390) -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48463) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 27074) -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46305) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 22758) -> [ 7500 ps] WR @ (7, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44147) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 18440) -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41988) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 14124) -> -[ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 9806) -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37671) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 5490) -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35513) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 1174) -> [ 7500 ps] WR @ (7, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (2, 464) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 62392) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33355) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 184) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63964) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58076) -> -[ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61806) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53758) -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59647) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 49442) -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57489) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45126) -> [ 7500 ps] WR @ (7, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55331) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40808) -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53172) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36492) -> -[ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 456) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51014) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32174) -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48855) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 27858) -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46697) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23540) -> [ 7500 ps] WR @ (7, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44538) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19224) -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42380) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14908) -> -[ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40222) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10590) -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38063) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 6274) -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35905) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1956) -> [ 7500 ps] WR @ (7, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] WR @ (0, 448) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 63176) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33746) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 56) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64356) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58860) -> -[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62198) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54542) -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60039) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 50226) -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57881) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 45908) -> [ 7500 ps] WR @ (7, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55722) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 41592) -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53564) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 37276) -> -[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51406) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32958) -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 440) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49247) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 28642) -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 24324) -> [ 7500 ps] WR @ (7, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44930) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 20008) -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42772) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 15692) -> -[ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40614) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 11374) -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38455) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 7058) -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36297) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 2740) -> [ 7500 ps] WR @ (7, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] WR @ (6, 432) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 63960) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34138) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 432) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64748) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59644) -> -[ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62590) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55326) -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60431) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 51010) -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58273) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46692) -> [ 7500 ps] WR @ (7, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56114) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42376) -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53956) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38060) -> -[ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51798) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33742) -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 424) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49639) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29426) -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47481) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25108) -> [ 7500 ps] WR @ (7, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45322) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20792) -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43164) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16474) -> -[ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41005) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12158) -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38847) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7842) -> [ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36689) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3524) -> -[ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 416) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 64744) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 304) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 65140) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 60426) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62981) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 56110) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60823) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 51794) -> [ 7500 ps] WR @ (7, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58665) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47476) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56506) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 43160) -> -[ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54348) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 38842) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52189) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 34526) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50031) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 30210) -> [ 7500 ps] WR @ (7, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47873) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 25892) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45714) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 21576) -> -[ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43556) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 17258) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41397) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 12942) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39239) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 8626) -> [ 7500 ps] WR @ (7, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 400) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37081) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 4308) -> [ 7500 ps] WR @ (7, 176) -> [ 2500 ps] ACT @ (0, 65528) -> [ 7500 ps] WR @ (2, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34922) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65532) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61210) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56894) -> -[ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61215) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52578) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59057) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 48260) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43944) -> [ 7500 ps] WR @ (7, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54740) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39626) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52581) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35310) -> -[ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 392) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50423) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30994) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48265) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 26676) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46106) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22360) -> [ 7500 ps] WR @ (7, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43948) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18042) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13726) -> -[ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39631) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9408) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37472) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 5092) -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35314) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 776) -> [ 7500 ps] WR @ (7, 48) -> -[ 2500 ps] ACT @ (6, 61994) -> [ 7500 ps] WR @ (0, 384) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33156) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 48) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63765) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 57678) -> [ 7500 ps] WR @ (7, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61607) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 53360) -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59448) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49044) -> -[ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57290) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 44728) -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55132) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 40410) -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52973) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36094) -> [ 7500 ps] WR @ (7, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 376) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50815) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 31776) -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48656) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 27460) -> -[ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46498) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 23144) -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44340) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 18826) -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42181) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 14510) -> [ 7500 ps] WR @ (7, 424) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40023) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 10192) -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37864) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 5876) -> -[ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35706) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 1560) -> [ 7500 ps] WR @ (7, 424) -> [ 2500 ps] ACT @ (4, 62778) -> -[ 7500 ps] WR @ (6, 368) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33548) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 424) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58462) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61999) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 54144) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59840) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49828) -> [ 7500 ps] WR @ (7, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57682) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45512) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55524) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41194) -> -[ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53365) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36878) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 360) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51207) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 32560) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28244) -> [ 7500 ps] WR @ (7, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46890) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23928) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44732) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19610) -> -[ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 42573) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15294) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40415) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 10976) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6660) -> [ 7500 ps] WR @ (7, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36098) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2342) -> [ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] WR @ (4, 352) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 63562) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 296) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64549) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 59246) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62391) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 54928) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60232) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 50612) -> [ 7500 ps] WR @ (7, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58074) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 46294) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55915) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 41978) -> -[ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53757) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 37662) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51599) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 33344) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 344) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49440) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 29028) -> [ 7500 ps] WR @ (7, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47282) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 24710) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45123) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 20394) -> -[ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 42965) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 16078) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40807) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 11760) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38648) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 7444) -> [ 7500 ps] WR @ (7, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36490) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 3126) -> [ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] WR @ (2, 336) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64346) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34331) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 168) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64941) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60030) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62783) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 55712) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51396) -> [ 7500 ps] WR @ (7, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58466) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47078) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56307) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42762) -> -[ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54149) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38446) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51991) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 34128) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 328) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29812) -> [ 7500 ps] WR @ (7, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47674) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25494) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45515) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21178) -> -[ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43357) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16862) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41199) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 12544) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8228) -> [ 7500 ps] WR @ (7, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36882) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3910) -> [ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] WR @ (0, 320) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 65130) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34723) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 40) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 65333) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60812) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63174) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 56496) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61016) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52180) -> [ 7500 ps] WR @ (7, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58858) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47862) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56699) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43546) -> -[ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54541) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 39228) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] WR @ (6, 312) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52382) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34912) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 312) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50224) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 30596) -> -[ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 26278) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 48066) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 45907) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 21962) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43749) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 17644) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41590) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 13328) -> [ 7500 ps] WR @ (7, 416) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39432) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 9012) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37274) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 4694) -> -[ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35115) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 378) -> [ 7500 ps] WR @ (7, 416) -> [ 2500 ps] ACT @ (4, 61596) -> -[ 7500 ps] WR @ (6, 304) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32957) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 416) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 63566) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57280) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61408) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 52964) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48646) -> [ 7500 ps] WR @ (7, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57091) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44330) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54933) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40012) -> -[ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52774) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35696) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 296) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50616) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 31380) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48458) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27062) -> [ 7500 ps] WR @ (7, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46299) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22746) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44141) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18428) -> -[ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41982) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14112) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39824) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9796) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37666) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5478) -> [ 7500 ps] WR @ (7, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 288) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35507) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1162) -> [ 7500 ps] WR @ (7, 288) -> [ 2500 ps] ACT @ (2, 62380) -> [ 7500 ps] WR @ (4, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33349) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 288) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63958) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 58064) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61800) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 53746) -> -[ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59641) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 49430) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57483) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 45114) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55325) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 40796) -> [ 7500 ps] WR @ (7, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53166) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 36480) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51008) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32162) -> -[ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48849) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 27846) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46691) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 23530) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44533) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 19212) -> [ 7500 ps] WR @ (7, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42374) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 14896) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40216) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 10578) -> -[ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38057) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 6262) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35899) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 1946) -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] ACT @ (0, 63164) -> [ 7500 ps] WR @ (2, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33741) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64350) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58848) -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62192) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54530) -> [ 7500 ps] WR @ (7, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60033) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50214) -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57875) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45898) -> -[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 55717) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41580) -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53558) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37264) -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51400) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32946) -> [ 7500 ps] WR @ (7, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 264) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49241) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28630) -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47083) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24314) -> -[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 44925) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19996) -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42766) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 15680) -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40608) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11362) -> [ 7500 ps] WR @ (7, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38449) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7046) -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36291) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2730) -> -[ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] WR @ (0, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 63948) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 34133) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64742) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 59632) -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62584) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 55314) -> [ 7500 ps] WR @ (7, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60425) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 50998) -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58267) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 46680) -> -[ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56108) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 42364) -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53950) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 38048) -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51792) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33730) -> [ 7500 ps] WR @ (7, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 248) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49633) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 29414) -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47475) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 25096) -> -[ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 45316) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 20780) -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43158) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 16464) -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41000) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 12146) -> [ 7500 ps] WR @ (7, 408) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38841) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 7830) -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 240) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36683) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 3512) -> -[ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] WR @ (6, 240) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64732) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 34524) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 408) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65134) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60416) -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56098) -> [ 7500 ps] WR @ (7, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60817) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51782) -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58659) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47464) -> -[ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56500) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43148) -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54342) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 38832) -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52184) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34514) -> [ 7500 ps] WR @ (7, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 232) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50025) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30198) -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47867) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25880) -> -[ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 45708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21564) -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43550) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 17248) -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41392) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12930) -> [ 7500 ps] WR @ (7, 280) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39233) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8614) -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 224) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37075) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4296) -> -[ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] WR @ (4, 224) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 65516) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 34916) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 280) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65526) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 61200) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63368) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 56882) -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61209) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52566) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59051) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 48248) -> -[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56892) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 43932) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54734) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 39614) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52575) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 35298) -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 216) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50417) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 30982) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48259) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 26664) -> -[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46100) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 22348) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43942) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 18030) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41783) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 13714) -> [ 7500 ps] WR @ (7, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39625) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 9398) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37467) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 5080) -> -[ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35308) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 764) -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (2, 208) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61982) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33150) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 152) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63759) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57666) -> [ 7500 ps] WR @ (7, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53350) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61601) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59443) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49032) -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57284) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44716) -> -[ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 55126) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40398) -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52967) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 36082) -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 200) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50809) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31766) -> [ 7500 ps] WR @ (7, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48651) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27448) -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46492) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23132) -> -[ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 44334) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18814) -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42175) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 14498) -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40017) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10182) -> [ 7500 ps] WR @ (7, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37859) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5864) -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 192) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35700) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 1548) -> -[ 7500 ps] WR @ (7, 24) -> [ 2500 ps] ACT @ (6, 62766) -> [ 7500 ps] WR @ (0, 192) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33542) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 24) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64151) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58450) -> -[ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61993) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54134) -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59835) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 49816) -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57676) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 45500) -> [ 7500 ps] WR @ (7, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55518) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 41182) -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53359) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36866) -> -[ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 184) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51201) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32548) -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49042) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 28232) -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46884) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 23916) -> [ 7500 ps] WR @ (7, 400) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44726) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 19598) -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42567) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 15282) -> -[ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40409) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 10964) -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38250) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 6648) -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36092) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 2332) -> [ 7500 ps] WR @ (7, 400) -> -[ 2500 ps] ACT @ (4, 63550) -> [ 7500 ps] WR @ (6, 176) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33934) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 400) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64543) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59234) -> [ 7500 ps] WR @ (7, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62385) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54916) -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60226) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50600) -> -[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58068) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46284) -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55910) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41966) -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53751) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37650) -> [ 7500 ps] WR @ (7, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51593) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33332) -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 168) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49434) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29016) -> -[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47276) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24700) -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45118) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 20382) -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42959) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16066) -> [ 7500 ps] WR @ (7, 272) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40801) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11748) -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38642) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7432) -> -[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3116) -> [ 7500 ps] WR @ (7, 272) -> [ 2500 ps] ACT @ (2, 64334) -> -[ 7500 ps] WR @ (4, 160) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34326) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 272) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64935) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 60018) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62777) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 55700) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60618) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 51384) -> [ 7500 ps] WR @ (7, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58460) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47068) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56302) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 42750) -> -[ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54143) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 38434) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51985) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 34116) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 152) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49826) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 29800) -> [ 7500 ps] WR @ (7, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47668) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 25482) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45509) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 21166) -> -[ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43351) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 16850) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41193) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 12532) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39034) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 8216) -> [ 7500 ps] WR @ (7, 144) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36876) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 3898) -> [ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] WR @ (2, 144) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65118) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34717) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 144) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 65327) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60802) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63169) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56484) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61010) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52168) -> [ 7500 ps] WR @ (7, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58852) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47850) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56693) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43534) -> -[ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54535) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39218) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52377) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 34900) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50218) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30584) -> [ 7500 ps] WR @ (7, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48060) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26266) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45901) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21950) -> -[ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43743) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17634) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41585) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 13316) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39426) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9000) -> [ 7500 ps] WR @ (7, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37268) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4682) -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 366) -> -[ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] WR @ (0, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 61586) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32951) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63561) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 57268) -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61402) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52952) -> [ 7500 ps] WR @ (7, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59244) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 48634) -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57085) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 44318) -> -[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54927) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 40002) -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52769) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 35684) -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 120) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50610) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 31368) -> [ 7500 ps] WR @ (7, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48452) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 27050) -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46293) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 22734) -> -[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 44135) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 18416) -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41976) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 14100) -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39818) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 9784) -> [ 7500 ps] WR @ (7, 392) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37660) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 5466) -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 112) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35501) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 1150) -> -[ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] WR @ (6, 112) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62368) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 33343) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 392) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63952) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 58052) -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61794) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53736) -> [ 7500 ps] WR @ (7, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59636) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49418) -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57477) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45102) -> -[ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 55319) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40784) -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53160) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 36468) -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 104) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51002) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32152) -> [ 7500 ps] WR @ (7, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48844) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27834) -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46685) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 23518) -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44527) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19200) -> [ 7500 ps] WR @ (7, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14884) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42368) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 264) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40210) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10568) -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38052) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6250) -> -[ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35893) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1934) -> [ 7500 ps] WR @ (7, 264) -> [ 2500 ps] ACT @ (2, 63152) -> -[ 7500 ps] WR @ (4, 96) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33735) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 264) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 64344) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 58836) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62186) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 54520) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60028) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 50202) -> [ 7500 ps] WR @ (7, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57869) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 45886) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55711) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 41568) -> -[ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53552) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 37252) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51394) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 32936) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 88) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49236) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 28618) -> [ 7500 ps] WR @ (7, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47077) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 24302) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44919) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 19984) -> -[ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 42760) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 15668) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40602) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 11350) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 7034) -> [ 7500 ps] WR @ (7, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 80) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36285) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 2718) -> [ 7500 ps] WR @ (7, 136) -> [ 2500 ps] ACT @ (0, 63936) -> [ 7500 ps] WR @ (2, 80) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34127) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 136) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64736) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59620) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62578) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55302) -> -[ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60419) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50986) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58261) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 46670) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56103) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42352) -> [ 7500 ps] WR @ (7, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53944) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38036) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51786) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33718) -> -[ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 72) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49627) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29402) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47469) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 25086) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45311) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20768) -> [ 7500 ps] WR @ (7, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43152) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16452) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40994) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12134) -> -[ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38835) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7818) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36677) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3502) -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] ACT @ (6, 64720) -> [ 7500 ps] WR @ (0, 64) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 34519) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65128) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 60404) -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62970) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 56086) -> [ 7500 ps] WR @ (7, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60811) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51770) -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58653) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47454) -> -[ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56495) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43136) -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54336) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 38820) -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52178) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34502) -> [ 7500 ps] WR @ (7, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 56) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50019) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 30186) -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47861) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 25870) -> -[ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 45703) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 21552) -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43544) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 17236) -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41386) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 12918) -> [ 7500 ps] WR @ (7, 384) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39227) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 8602) -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 48) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37069) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 4284) -> -[ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] WR @ (6, 48) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 34910) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 384) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 65520) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61188) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63362) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56870) -> [ 7500 ps] WR @ (7, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61203) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52554) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59045) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48236) -> -[ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56886) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43920) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54728) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39604) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52570) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35286) -> [ 7500 ps] WR @ (7, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 40) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50411) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30970) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48253) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26652) -> -[ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46094) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22336) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43936) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 18020) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41778) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13702) -> [ 7500 ps] WR @ (7, 256) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39619) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9386) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37461) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5068) -> -[ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35302) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 752) -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] WR @ (4, 32) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 61972) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33144) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 256) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 57654) -> [ 7500 ps] WR @ (7, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61595) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 53338) -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59437) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 49020) -> -[ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57278) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 44704) -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55120) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 40388) -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52962) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 36070) -> [ 7500 ps] WR @ (7, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 24) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50803) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 31754) -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48645) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 27436) -> -[ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46486) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 23120) -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44328) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 18804) -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 14486) -> [ 7500 ps] WR @ (7, 128) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40011) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 10170) -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37853) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 5852) -> -[ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35694) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 1536) -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] WR @ (2, 16) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62754) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33536) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 128) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 64145) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58438) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61987) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54122) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59829) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49804) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57670) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45488) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55512) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 41170) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53353) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36854) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 8) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51195) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32538) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49037) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28220) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46878) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23904) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44720) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 19586) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42561) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15270) -> [ 7500 ps] WR @ (7, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40403) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10954) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38245) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6636) -> -[ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36086) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2320) -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] WR @ (0, 0) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 63540) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33928) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 59224) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63539) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 64537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59223) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 62379) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 54907) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60221) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 50589) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 46274) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58062) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] ACT @ (7, 46273) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 55904) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 41955) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 53745) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 37639) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51587) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33323) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 49429) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29005) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47270) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 24689) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 45112) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 20371) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 42953) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16055) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 40795) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11739) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 38637) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 7421) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36478) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> [ 2500 ps] ACT @ (4, 64324) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 3105) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34320) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1016) -> -[ 2500 ps] ACT @ (5, 64323) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 1000) -> -[ 2500 ps] ACT @ (4, 60008) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 64929) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 60007) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55690) -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 62771) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 55689) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 51374) -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60612) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 51373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47058) -> -[ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58454) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 47057) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42740) -> [ 7500 ps] WR @ (5, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 56296) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (5, 42739) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38424) -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54137) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 38423) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34106) -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51979) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 34105) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29790) -> [ 7500 ps] WR @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49820) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 29789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25474) -> -[ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47662) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 25473) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21156) -> [ 7500 ps] WR @ (5, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 45504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (5, 21155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16840) -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43345) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 16839) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12522) -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 41187) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 12521) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 8206) -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 39028) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 8205) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3890) -> -[ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36870) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> -[ 2500 ps] ACT @ (2, 65108) -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 3889) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34712) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 888) -> [ 2500 ps] ACT @ (3, 65107) -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] ACT @ (2, 60792) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 65321) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 60791) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 56474) -> -[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 63163) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56473) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52158) -> [ 7500 ps] WR @ (3, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 61004) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 52157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47842) -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58846) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 47841) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 43524) -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 56688) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 43523) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 39208) -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54529) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39207) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 34890) -> -[ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52371) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 34889) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 50212) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 30573) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 48054) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 26257) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 45896) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 21939) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43737) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 17623) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 41579) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 13305) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 39420) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 8989) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 37262) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 4673) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 35104) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] ACT @ (1, 61575) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 355) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32945) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 760) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 63555) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 57257) -> [ 7500 ps] WR @ (6, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61396) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 52941) -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59238) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 48623) -> -[ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 57079) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 44307) -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 54921) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 39991) -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 52763) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 35673) -> [ 7500 ps] WR @ (6, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 968) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50604) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 31357) -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48446) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 27039) -> -[ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 46287) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 22723) -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44129) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 18407) -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 41971) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 14089) -> [ 7500 ps] WR @ (6, 632) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39812) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 9773) -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37654) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 5455) -> -[ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 35495) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 1139) -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] WR @ (1, 960) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62359) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33337) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 632) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 63947) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58041) -> [ 7500 ps] WR @ (6, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61788) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 53725) -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59630) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49407) -> -[ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 57471) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45091) -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55313) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 40775) -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 53155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36457) -> [ 7500 ps] WR @ (6, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 952) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50996) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 32141) -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48838) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 27823) -> -[ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 46679) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 23507) -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44521) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 19191) -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 42363) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14873) -> [ 7500 ps] WR @ (6, 1008) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40204) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 10557) -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 38046) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6239) -> -[ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 35887) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1923) -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] WR @ (7, 944) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 63143) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33729) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1008) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 64339) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 58825) -> [ 7500 ps] WR @ (6, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62180) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 54509) -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60022) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 50191) -> -[ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 57863) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 45875) -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55705) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 41557) -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 53546) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 37241) -> [ 7500 ps] WR @ (6, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51388) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 32925) -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 936) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 49230) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 28607) -> -[ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 47071) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 24291) -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44913) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 19973) -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 42754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 15657) -> [ 7500 ps] WR @ (6, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40596) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 11341) -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 38438) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 7023) -> -[ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 36279) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 2707) -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] WR @ (5, 928) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 63925) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34121) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 880) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 64730) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 59609) -> [ 7500 ps] WR @ (6, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62572) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55293) -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60414) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 50975) -> -[ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 58255) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 46659) -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56097) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 42341) -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 53938) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38025) -> [ 7500 ps] WR @ (6, 752) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51780) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33709) -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 920) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 49622) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 29391) -> -[ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 47463) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25075) -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 45305) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 20757) -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 43146) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16441) -> -[ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 12125) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 40988) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 38830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 7807) -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36671) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 3491) -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] ACT @ (1, 64709) -> [ 7500 ps] WR @ (3, 912) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 34513) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 752) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 65122) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 60393) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62964) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 56077) -> [ 7500 ps] WR @ (6, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60806) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 51759) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58647) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 47443) -> -[ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 56489) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 43125) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 54330) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 38809) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 52172) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 34491) -> [ 7500 ps] WR @ (6, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 904) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50013) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 30175) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 47855) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 25859) -> -[ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 45697) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 21541) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 43538) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 17225) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 41380) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 12907) -> [ 7500 ps] WR @ (6, 624) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39221) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 8591) -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 896) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37063) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 4275) -> -[ 7500 ps] WR @ (6, 624) -> [ 2500 ps] ACT @ (7, 65493) -> [ 7500 ps] WR @ (1, 896) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34905) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 624) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 65514) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61177) -> -[ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 63356) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56859) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61197) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 52543) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59039) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 48227) -> [ 7500 ps] WR @ (6, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56881) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 43909) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 54722) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 39593) -> -[ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 52564) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 35275) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 888) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50405) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 30959) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48247) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 26643) -> [ 7500 ps] WR @ (6, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46089) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 22325) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 43930) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 18009) -> -[ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 41772) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 13691) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39613) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 9375) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37455) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 5059) -> [ 7500 ps] WR @ (6, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 880) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 35297) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 741) -> [ 7500 ps] WR @ (6, 1000) -> [ 2500 ps] ACT @ (5, 61961) -> [ 7500 ps] WR @ (7, 880) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33138) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 1000) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 63748) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 57643) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61589) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 53327) -> -[ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 59431) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 49011) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57273) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 44693) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55114) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 40377) -> [ 7500 ps] WR @ (6, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 52956) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 36059) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50797) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 31743) -> -[ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 48639) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 27425) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46480) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 23109) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 18793) -> [ 7500 ps] WR @ (6, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 42164) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 14475) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40005) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 10159) -> -[ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 37847) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 5841) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 864) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 35688) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 1525) -> [ 7500 ps] WR @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] WR @ (5, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 62745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33530) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 872) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 64140) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 58427) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61981) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 54111) -> -[ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 59823) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 49793) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57664) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 45477) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55506) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 41161) -> [ 7500 ps] WR @ (6, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 53348) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 36843) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 856) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51189) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32527) -> -[ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 49031) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 28209) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46872) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 23893) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44714) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19577) -> [ 7500 ps] WR @ (6, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 42556) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15259) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40397) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10943) -> -[ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 38239) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 6625) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 848) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36080) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 2309) -> [ 7500 ps] WR @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] WR @ (3, 848) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 63529) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33922) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 744) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 64532) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 59211) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 54895) -> -[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 60215) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 50577) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58056) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 46261) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 41945) -> [ 7500 ps] WR @ (6, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 53740) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 37627) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51581) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 33311) -> -[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 840) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 49423) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 28993) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 47264) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 24677) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 45106) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 20359) -> [ 7500 ps] WR @ (6, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 42947) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 16043) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 11727) -> -[ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 38631) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 7409) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 832) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36472) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 3093) -> [ 7500 ps] WR @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] WR @ (1, 832) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64311) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34314) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 616) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 64923) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59995) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62765) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55679) -> -[ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 60607) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 51361) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58448) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 47045) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56290) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42727) -> [ 7500 ps] WR @ (6, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 54131) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 38411) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51973) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34095) -> -[ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 824) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 49815) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29777) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 47656) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 25461) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 45498) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21143) -> [ 7500 ps] WR @ (6, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 43339) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16827) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 41181) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 12511) -> -[ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 39023) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 8193) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (7, 816) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36864) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 3877) -> [ 7500 ps] WR @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] WR @ (7, 816) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 65095) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34706) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 992) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 65315) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 60779) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 63157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 56463) -> -[ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 60999) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 52145) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58840) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 47829) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56682) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 43511) -> -[ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 39195) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54523) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 52365) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 34879) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 808) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50207) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 30561) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 26245) -> [ 7500 ps] WR @ (6, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 45890) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 21927) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 43731) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 17611) -> -[ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 41573) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 13293) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39414) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 8977) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 4661) -> [ 7500 ps] WR @ (6, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (5, 800) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 35098) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 343) -> [ 7500 ps] WR @ (6, 864) -> [ 2500 ps] ACT @ (3, 61563) -> [ 7500 ps] WR @ (5, 800) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 864) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 63549) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 57245) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61390) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 52929) -> -[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 59232) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 48613) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57074) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 44295) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 54915) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39979) -> [ 7500 ps] WR @ (6, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 52757) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35661) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 792) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50598) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 31345) -> -[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 48440) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27029) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46282) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 22711) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44123) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18395) -> [ 7500 ps] WR @ (6, 736) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 41965) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14077) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39806) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 9761) -> -[ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 37648) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 5445) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 35490) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 1127) -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] ACT @ (1, 62347) -> [ 7500 ps] WR @ (3, 784) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 33331) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 736) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 63941) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 58029) -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61782) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 53713) -> [ 7500 ps] WR @ (6, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59624) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 49397) -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57466) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 45079) -> -[ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 55307) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 40763) -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> -[ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 53149) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 36445) -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 776) -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50990) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 32129) -> [ 7500 ps] WR @ (6, 608) -> -[ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48832) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 27813) -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46674) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 23495) -> -[ 7500 ps] WR @ (6, 608) -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (1, 768) -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11410) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 44515) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] WR @ (6, 608) -> [ 2500 ps] ACT @ (7, 38473) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36314) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 7092) -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34156) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2776) -> [ 5000 ps] RD @ (7, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 2500 ps] RD @ (0, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 63994) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 64765) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62607) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 59678) -> [ 5000 ps] RD @ (7, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60449) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 55362) -> -[ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58290) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 51044) -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56132) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 46728) -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53973) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 42410) -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51815) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 38094) -> [ 5000 ps] RD @ (7, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49657) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33778) -> -[ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47498) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 29460) -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45340) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 25144) -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43181) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 20826) -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41023) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 16510) -> [ 5000 ps] RD @ (7, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38865) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 12194) -> -[ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36706) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 7876) -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34548) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 3560) -> [ 5000 ps] RD @ (7, 496) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 64778) -> -[ 5000 ps] RD @ (6, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65157) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62999) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60462) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60841) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56146) -> [ 5000 ps] RD @ (7, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58682) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51828) -> -[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56524) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 47512) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54365) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43194) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52207) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38878) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50049) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34562) -> [ 5000 ps] RD @ (7, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47890) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30244) -> -[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45732) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 25928) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43573) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21610) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41415) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17294) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39257) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12978) -> [ 5000 ps] RD @ (7, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37098) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8660) -> -[ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34940) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 4344) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32781) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26) -> [ 5000 ps] RD @ (7, 368) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 61246) -> -[ 5000 ps] RD @ (4, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63391) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61232) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 56928) -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59074) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52612) -> [ 5000 ps] RD @ (7, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56916) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 48296) -> -[ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54757) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 43978) -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52599) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 39662) -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50440) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 35344) -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48282) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 31028) -> [ 5000 ps] RD @ (7, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46124) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 26712) -> -[ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43965) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 22394) -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41807) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 18078) -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39648) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 13760) -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37490) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 9444) -> [ 5000 ps] RD @ (7, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35332) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 5128) -> -[ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33173) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 810) -> [ 5000 ps] RD @ (7, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 2500 ps] RD @ (2, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 62030) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63783) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57712) -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59466) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53396) -> [ 5000 ps] RD @ (7, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57308) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49080) -> -[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55149) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 44762) -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52991) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40446) -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36128) -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48674) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31812) -> [ 5000 ps] RD @ (7, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46516) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27496) -> -[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44357) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 23178) -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42199) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18862) -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14544) -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37882) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10228) -> [ 5000 ps] RD @ (7, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35724) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5912) -> -[ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33565) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1594) -> [ 5000 ps] RD @ (7, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 2500 ps] RD @ (0, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 62814) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64175) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62016) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58496) -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59858) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54180) -> [ 5000 ps] RD @ (7, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57699) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49862) -> -[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55541) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 45546) -> [ 2500 ps] NOP -> [ 2500 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53383) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 41230) -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 36912) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 51224) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49066) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 32596) -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46907) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 28278) -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 44749) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 23962) -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42591) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 19646) -> [ 5000 ps] RD @ (7, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40432) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 15328) -> -[ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38274) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 11012) -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36115) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 6694) -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33957) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 2378) -> [ 5000 ps] RD @ (7, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (4, 63598) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 64567) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62408) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 59280) -> [ 5000 ps] RD @ (7, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54964) -> -[ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58091) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 50646) -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55933) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46330) -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 53775) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42014) -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51616) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37696) -> [ 5000 ps] RD @ (7, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49458) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33380) -> -[ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47299) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 29062) -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45141) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24746) -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 42983) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20430) -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40824) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16112) -> [ 5000 ps] RD @ (7, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38666) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11796) -> -[ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36507) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 7478) -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34349) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3162) -> [ 5000 ps] RD @ (7, 360) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 64382) -> -[ 5000 ps] RD @ (4, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64959) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62800) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 60064) -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60642) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 55748) -> [ 5000 ps] RD @ (7, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58483) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 51430) -> -[ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56325) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 47114) -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54166) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 42796) -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52008) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 38480) -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49850) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 34164) -> [ 5000 ps] RD @ (7, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47691) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 29846) -> -[ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45533) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 25530) -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43374) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 21212) -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41216) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 16896) -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39058) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 12580) -> [ 5000 ps] RD @ (7, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36899) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 8262) -> -[ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34741) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 3946) -> [ 5000 ps] RD @ (7, 232) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 65164) -> [ 5000 ps] RD @ (2, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65350) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63192) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60848) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61034) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56532) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58875) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52214) -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56717) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47898) -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54558) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 43580) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52400) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39264) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50242) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34948) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48083) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30630) -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45925) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26314) -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43766) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 21996) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41608) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17680) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39450) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13364) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37291) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9046) -> [ 5000 ps] RD @ (7, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35133) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4730) -> -[ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32974) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 412) -> [ 5000 ps] RD @ (7, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 2500 ps] RD @ (0, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 61632) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63584) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61426) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 57316) -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59267) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52998) -> [ 5000 ps] RD @ (7, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 48682) -> -[ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54950) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 44364) -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52792) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 40048) -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50633) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 35730) -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48475) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 31414) -> [ 5000 ps] RD @ (7, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46317) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 27098) -> -[ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44158) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 22780) -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42000) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 18464) -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39841) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 14146) -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37683) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 9830) -> [ 5000 ps] RD @ (7, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35525) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 5514) -> -[ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33366) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 1196) -> [ 5000 ps] RD @ (7, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 2500 ps] RD @ (6, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62416) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63976) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61817) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58098) -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59659) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53782) -> [ 5000 ps] RD @ (7, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57501) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49466) -> -[ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55342) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 45148) -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53184) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40832) -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51025) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36514) -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48867) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32198) -> [ 5000 ps] RD @ (7, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46709) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27882) -> -[ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44550) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 23564) -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42392) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19248) -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40233) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14930) -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38075) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10614) -> [ 5000 ps] RD @ (7, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35917) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6298) -> -[ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33758) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 1980) -> [ 5000 ps] RD @ (7, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 2500 ps] RD @ (4, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 63200) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64368) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62209) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 58882) -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60051) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 54566) -> [ 5000 ps] RD @ (7, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57893) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 50250) -> -[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55734) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 45932) -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53576) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 41616) -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51417) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 37298) -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49259) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32982) -> [ 5000 ps] RD @ (7, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47100) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 28664) -> -[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44942) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 24348) -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42784) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 20032) -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40625) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 15714) -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38467) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 11398) -> [ 5000 ps] RD @ (7, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36308) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 7080) -> -[ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34150) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 2764) -> [ 5000 ps] RD @ (7, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 2500 ps] RD @ (2, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63984) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64760) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62601) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59666) -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55350) -> [ 5000 ps] RD @ (7, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58284) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51032) -> -[ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56126) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 46716) -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53968) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42400) -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51809) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38082) -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49651) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33766) -> [ 5000 ps] RD @ (7, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47492) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29448) -> -[ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45334) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 25132) -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43176) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20816) -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41017) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16498) -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38859) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12182) -> [ 5000 ps] RD @ (7, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36700) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7864) -> -[ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34542) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3548) -> [ 5000 ps] RD @ (7, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 2500 ps] RD @ (0, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 64768) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65152) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62993) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60450) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60835) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 56134) -> [ 5000 ps] RD @ (7, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58676) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51816) -> -[ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56518) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 47500) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54360) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43184) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52201) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 38866) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50043) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34550) -> [ 5000 ps] RD @ (7, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47884) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 30232) -> -[ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45726) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 25916) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43567) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 21598) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41409) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 17282) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39251) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 12966) -> [ 5000 ps] RD @ (7, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37092) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 8648) -> -[ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34934) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 4332) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32775) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 14) -> [ 5000 ps] RD @ (7, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 2500 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61234) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 63385) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 56918) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61227) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59068) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 52600) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56910) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48284) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 54751) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43966) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52593) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39650) -> [ 5000 ps] RD @ (7, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50435) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35334) -> -[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48276) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 31016) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46118) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26700) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 43959) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22382) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41801) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 18066) -> [ 5000 ps] RD @ (7, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39643) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13750) -> -[ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37484) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 9432) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35326) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5116) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33167) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 798) -> [ 5000 ps] RD @ (7, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (2, 62018) -> [ 5000 ps] RD @ (4, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 63777) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61619) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 57702) -> [ 5000 ps] RD @ (7, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59460) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 53384) -> -[ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57302) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 49068) -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55143) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 44750) -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 52985) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 40434) -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50827) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 36118) -> [ 5000 ps] RD @ (7, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 728) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48668) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 31800) -> -[ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46510) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 27484) -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44351) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 23166) -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 42193) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 18850) -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40034) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 14532) -> [ 5000 ps] RD @ (7, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37876) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 10216) -> -[ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35718) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 5900) -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 720) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33559) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 1582) -> [ 5000 ps] RD @ (7, 216) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62802) -> -[ 5000 ps] RD @ (2, 720) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64169) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62010) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58484) -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59852) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54168) -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57694) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49852) -> -[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55535) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 45534) -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53377) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41218) -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51218) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36900) -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 712) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49060) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32584) -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46902) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28268) -> -[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44743) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 23950) -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42585) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19634) -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40426) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15316) -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38268) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11000) -> [ 5000 ps] RD @ (7, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36110) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6684) -> -[ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 704) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33951) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 2366) -> [ 5000 ps] RD @ (7, 88) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 63586) -> [ 5000 ps] RD @ (0, 704) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64561) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62402) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 59268) -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60244) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54952) -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58086) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 50636) -> [ 5000 ps] RD @ (7, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55927) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 46318) -> -[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53769) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 42002) -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51610) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 37684) -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49452) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33368) -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 696) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47294) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 29052) -> [ 5000 ps] RD @ (7, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45135) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 24734) -> -[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42977) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 20418) -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40818) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 16100) -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38660) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 11784) -> [ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36501) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 7466) -> [ 5000 ps] RD @ (7, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 688) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34343) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 3150) -> -[ 5000 ps] RD @ (7, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 2500 ps] RD @ (6, 688) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64370) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64953) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62794) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60052) -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60636) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55736) -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58477) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51418) -> [ 5000 ps] RD @ (7, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56319) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47102) -> -[ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54161) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 42786) -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52002) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38468) -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49844) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34152) -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 680) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47685) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29834) -> [ 5000 ps] RD @ (7, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45527) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25518) -> -[ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43369) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21202) -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41210) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16884) -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39052) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12568) -> [ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36893) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8250) -> [ 5000 ps] RD @ (7, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 672) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34735) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3934) -> -[ 5000 ps] RD @ (7, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (4, 672) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 65154) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65345) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63186) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 60836) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61028) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 56520) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58869) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52202) -> [ 5000 ps] RD @ (7, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56711) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47886) -> -[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54553) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 43570) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52394) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 39252) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50236) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 34936) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 664) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48077) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 30618) -> [ 5000 ps] RD @ (7, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45919) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 26302) -> -[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43761) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 21986) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41602) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 17668) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39444) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 13352) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37285) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 9034) -> [ 5000 ps] RD @ (7, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35127) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 4718) -> -[ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32968) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 400) -> [ 5000 ps] RD @ (7, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 2500 ps] RD @ (2, 656) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61620) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63578) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61420) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57304) -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59261) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52986) -> [ 5000 ps] RD @ (7, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57103) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48670) -> -[ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54944) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 44352) -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52786) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40036) -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50628) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35720) -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 648) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48469) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31402) -> [ 5000 ps] RD @ (7, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46311) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27086) -> -[ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44152) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 22768) -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41994) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 18452) -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39836) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14136) -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37677) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9818) -> [ 5000 ps] RD @ (7, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35519) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5502) -> -[ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33360) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1184) -> [ 5000 ps] RD @ (7, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 2500 ps] RD @ (0, 640) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 62404) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63970) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61812) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58088) -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59653) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 53770) -> [ 5000 ps] RD @ (7, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57495) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49454) -> -[ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55336) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 45136) -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53178) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 40820) -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51020) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36504) -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48861) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32186) -> [ 5000 ps] RD @ (7, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46703) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 27870) -> -[ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44544) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 23552) -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42386) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 19236) -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40228) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 14920) -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38069) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 10602) -> [ 5000 ps] RD @ (7, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35911) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 6286) -> -[ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33752) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 1968) -> [ 5000 ps] RD @ (7, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 2500 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 63188) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64362) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62203) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58870) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60045) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54554) -> [ 5000 ps] RD @ (7, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57887) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50238) -> -[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55728) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 45920) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53570) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41604) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51411) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 37286) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49253) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32970) -> [ 5000 ps] RD @ (7, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47095) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28654) -> -[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44936) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 24336) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42778) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20020) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40619) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15702) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 11386) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 38461) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36303) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 7070) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34144) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2752) -> [ 5000 ps] RD @ (7, 328) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 63972) -> -[ 5000 ps] RD @ (4, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64754) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 62595) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 59654) -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60437) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 55338) -> [ 5000 ps] RD @ (7, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58279) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 51022) -> -[ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56120) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 46704) -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53962) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 42388) -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51803) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 38070) -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49645) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 33754) -> [ 5000 ps] RD @ (7, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 600) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47487) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 29438) -> -[ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45328) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 25120) -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43170) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 20804) -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41011) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 16486) -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38853) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 12170) -> [ 5000 ps] RD @ (7, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36695) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 7854) -> -[ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 592) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34536) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 3536) -> [ 5000 ps] RD @ (7, 200) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 64756) -> [ 5000 ps] RD @ (2, 592) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65146) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62987) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60438) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60829) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56122) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58670) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 51804) -> [ 5000 ps] RD @ (7, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56512) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47488) -> -[ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54354) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 43172) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52195) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38854) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50037) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34538) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 584) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47878) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30220) -> [ 5000 ps] RD @ (7, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45720) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25904) -> -[ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43562) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 21588) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41403) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17270) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39245) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12954) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37086) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8636) -> [ 5000 ps] RD @ (7, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34928) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4320) -> -[ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 576) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32770) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 4) -> [ 5000 ps] RD @ (7, 72) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 61222) -> [ 5000 ps] RD @ (0, 576) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63379) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61221) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 56906) -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59062) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52588) -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56904) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 48272) -> [ 5000 ps] RD @ (7, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54746) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43956) -> -[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52587) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 39638) -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 568) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50429) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 35322) -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 568) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48270) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 31004) -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46112) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 26688) -> [ 5000 ps] RD @ (7, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43954) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 22372) -> -[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41795) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 18054) -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39637) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 13738) -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37478) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 9420) -> [ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35320) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 5104) -> [ 5000 ps] RD @ (7, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 560) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33162) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 788) -> -[ 5000 ps] RD @ (7, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 2500 ps] RD @ (6, 560) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62006) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63771) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61613) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57690) -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59454) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53372) -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57296) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49056) -> [ 5000 ps] RD @ (7, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55137) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44738) -> -[ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52979) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40422) -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 552) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50821) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36106) -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 552) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48662) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31788) -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46504) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27472) -> [ 5000 ps] RD @ (7, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44345) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23154) -> -[ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42187) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 18838) -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40029) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14522) -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37870) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10204) -> [ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35712) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5888) -> [ 5000 ps] RD @ (7, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 544) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33553) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1570) -> -[ 5000 ps] RD @ (7, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (4, 544) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 62790) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64163) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62005) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 58474) -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59846) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 54156) -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57688) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 49840) -> [ 5000 ps] RD @ (7, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55529) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 45522) -> -[ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53371) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 41206) -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 536) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51213) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 36890) -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 536) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49054) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32572) -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46896) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 28256) -> [ 5000 ps] RD @ (7, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44737) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 23938) -> -[ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42579) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 19622) -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40421) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 15306) -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38262) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 10988) -> [ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36104) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 6672) -> [ 5000 ps] RD @ (7, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 528) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33945) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 2354) -> -[ 5000 ps] RD @ (7, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (2, 528) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63574) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64555) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62397) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 59258) -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60238) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54940) -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58080) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50624) -> [ 5000 ps] RD @ (7, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55921) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46306) -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53763) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 41990) -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51604) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 37672) -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49446) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33356) -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 520) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47288) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29040) -> [ 5000 ps] RD @ (7, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45129) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24722) -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42971) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 20406) -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40812) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16088) -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38654) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11772) -> [ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36496) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7456) -> [ 5000 ps] RD @ (7, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 512) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34337) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3138) -> -[ 5000 ps] RD @ (7, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 2500 ps] RD @ (0, 512) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 64358) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64947) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62788) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60040) -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60630) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 55724) -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58472) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51408) -> [ 5000 ps] RD @ (7, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56313) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47090) -> -[ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54155) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 42774) -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51996) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 38456) -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49838) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34140) -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 504) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47680) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 29824) -> [ 5000 ps] RD @ (7, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45521) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 25506) -> -[ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43363) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 21190) -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41204) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 16872) -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39046) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 12556) -> [ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36888) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 8240) -> [ 5000 ps] RD @ (7, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 496) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34729) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 3922) -> -[ 5000 ps] RD @ (7, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 2500 ps] RD @ (6, 496) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 65142) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65339) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63180) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 60824) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61022) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56508) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58864) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52192) -> [ 5000 ps] RD @ (7, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56705) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47874) -> -[ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54547) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 43558) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52388) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 39240) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50230) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34924) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 488) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48071) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30606) -> [ 5000 ps] RD @ (7, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26290) -> -[ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43755) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 21974) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41596) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 17656) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39438) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13340) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37279) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9022) -> [ 5000 ps] RD @ (7, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35121) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4706) -> -[ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32963) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 390) -> [ 5000 ps] RD @ (7, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 2500 ps] RD @ (4, 480) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 61608) -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63572) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61414) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 57292) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59255) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52974) -> [ 5000 ps] RD @ (7, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57097) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 48658) -> -[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54939) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 44342) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52780) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 40024) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50622) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 35708) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 472) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 31390) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 48463) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46305) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 27074) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44147) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 22758) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41988) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 18440) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 14124) -> [ 5000 ps] RD @ (7, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37671) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 9806) -> -[ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35513) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 5490) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 464) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33355) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 1174) -> [ 5000 ps] RD @ (7, 184) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62392) -> -[ 5000 ps] RD @ (2, 464) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63964) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61806) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58076) -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59647) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53758) -> [ 5000 ps] RD @ (7, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57489) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49442) -> -[ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55331) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 45126) -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53172) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 40808) -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51014) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36492) -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 456) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48855) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32174) -> [ 5000 ps] RD @ (7, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46697) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27858) -> -[ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44538) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 23540) -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42380) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19224) -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 40222) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14908) -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38063) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10590) -> [ 5000 ps] RD @ (7, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35905) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6274) -> -[ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 448) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33746) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1956) -> [ 5000 ps] RD @ (7, 56) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 63176) -> [ 5000 ps] RD @ (0, 448) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64356) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62198) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58860) -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60039) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54542) -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57881) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 50226) -> [ 5000 ps] RD @ (7, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55722) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 45908) -> -[ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53564) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 41592) -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51406) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 37276) -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49247) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32958) -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 440) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47089) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 28642) -> [ 5000 ps] RD @ (7, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44930) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 24324) -> -[ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42772) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 20008) -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40614) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 15692) -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38455) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 11374) -> [ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36297) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 7058) -> [ 5000 ps] RD @ (7, 432) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34138) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 2740) -> -[ 5000 ps] RD @ (7, 432) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63960) -> [ 5000 ps] RD @ (6, 432) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62590) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59644) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60431) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 55326) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58273) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51010) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56114) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46692) -> [ 5000 ps] RD @ (7, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53956) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42376) -> -[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51798) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 38060) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49639) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33742) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47481) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29426) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45322) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25108) -> [ 5000 ps] RD @ (7, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43164) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20792) -> -[ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41005) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 16474) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38847) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12158) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36689) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7842) -> [ 5000 ps] RD @ (7, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34530) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3524) -> [ 5000 ps] RD @ (7, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (4, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 64744) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65140) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62981) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 60426) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60823) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 56110) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58665) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 51794) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56506) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47476) -> [ 5000 ps] RD @ (7, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54348) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 43160) -> -[ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52189) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 38842) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50031) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 34526) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47873) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 30210) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45714) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 25892) -> [ 5000 ps] RD @ (7, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43556) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 21576) -> -[ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41397) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 17258) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39239) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 12942) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37081) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 8626) -> [ 5000 ps] RD @ (7, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34922) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 4308) -> [ 5000 ps] RD @ (7, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (2, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65528) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63373) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 61210) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61215) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 56894) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59057) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52578) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56898) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 48260) -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54740) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43944) -> -[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52581) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 39626) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50423) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 35310) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48265) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30994) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46106) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26676) -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43948) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 22360) -> -[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41789) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 18042) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39631) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 13726) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37472) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9408) -> [ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35314) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 5092) -> [ 5000 ps] RD @ (7, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33156) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 776) -> -[ 5000 ps] RD @ (7, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 2500 ps] RD @ (0, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 61994) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63765) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61607) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 57678) -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59448) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 53360) -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57290) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49044) -> [ 5000 ps] RD @ (7, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55132) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 44728) -> -[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52973) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 40410) -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 376) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50815) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36094) -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 376) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48656) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 31776) -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46498) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 27460) -> [ 5000 ps] RD @ (7, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44340) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 23144) -> -[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42181) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 18826) -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40023) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 14510) -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37864) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 10192) -> [ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35706) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 5876) -> [ 5000 ps] RD @ (7, 424) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 368) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33548) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 1560) -> -[ 5000 ps] RD @ (7, 424) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 2500 ps] RD @ (6, 368) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62778) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64157) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61999) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 58462) -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59840) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54144) -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57682) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49828) -> [ 5000 ps] RD @ (7, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55524) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45512) -> -[ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53365) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 41194) -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 360) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51207) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 36878) -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 360) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49048) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32560) -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46890) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 28244) -> [ 5000 ps] RD @ (7, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44732) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23928) -> -[ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42573) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 19610) -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40415) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 15294) -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38256) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10976) -> [ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36098) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6660) -> [ 5000 ps] RD @ (7, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 352) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33939) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 2342) -> -[ 5000 ps] RD @ (7, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (4, 352) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 63562) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64549) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62391) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 59246) -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60232) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 54928) -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58074) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 50612) -> [ 5000 ps] RD @ (7, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55915) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 46294) -> -[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53757) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 41978) -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51599) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 37662) -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49440) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 33344) -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 344) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47282) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 29028) -> [ 5000 ps] RD @ (7, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45123) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 24710) -> -[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42965) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 20394) -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40807) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 16078) -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38648) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 11760) -> [ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36490) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 7444) -> [ 5000 ps] RD @ (7, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 336) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34331) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 3126) -> -[ 5000 ps] RD @ (7, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (2, 336) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 64346) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64941) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62783) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60030) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 60624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55712) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 51396) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58466) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56307) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 47078) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54149) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42762) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 51991) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 38446) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 34128) -> [ 5000 ps] RD @ (7, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 328) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47674) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29812) -> -[ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45515) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 25494) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43357) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21178) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 41199) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 16862) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39040) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12544) -> [ 5000 ps] RD @ (7, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36882) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 8228) -> -[ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 320) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34723) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 3910) -> [ 5000 ps] RD @ (7, 40) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 65130) -> [ 5000 ps] RD @ (0, 320) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65333) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63174) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60812) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 61016) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 56496) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58858) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52180) -> [ 5000 ps] RD @ (7, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56699) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47862) -> -[ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54541) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 43546) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52382) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 39228) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 50224) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34912) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 312) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48066) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 30596) -> [ 5000 ps] RD @ (7, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45907) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 26278) -> -[ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43749) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 21962) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41590) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 17644) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39432) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 13328) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37274) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 9012) -> [ 5000 ps] RD @ (7, 416) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35115) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 4694) -> -[ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 304) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32957) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 378) -> [ 5000 ps] RD @ (7, 416) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 61596) -> [ 5000 ps] RD @ (6, 304) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63566) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61408) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 57280) -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52964) -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57091) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48646) -> [ 5000 ps] RD @ (7, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54933) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 44330) -> -[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52774) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 40012) -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 296) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50616) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35696) -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 296) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48458) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 31380) -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46299) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27062) -> [ 5000 ps] RD @ (7, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44141) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22746) -> -[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41982) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 18428) -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39824) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 14112) -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37666) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9796) -> [ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35507) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5478) -> [ 5000 ps] RD @ (7, 288) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33349) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1162) -> -[ 5000 ps] RD @ (7, 288) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 62380) -> [ 5000 ps] RD @ (4, 288) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63958) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61800) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 58064) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59641) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 53746) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57483) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 49430) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55325) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 45114) -> [ 5000 ps] RD @ (7, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53166) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 40796) -> -[ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51008) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 36480) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48849) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32162) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46691) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 27846) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44533) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 23530) -> [ 5000 ps] RD @ (7, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42374) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 19212) -> -[ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40216) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 14896) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38057) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 10578) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35899) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 6262) -> [ 5000 ps] RD @ (7, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33741) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 1946) -> [ 5000 ps] RD @ (7, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (2, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63164) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64350) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62192) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 58848) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60033) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 54530) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57875) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50214) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55717) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45898) -> [ 5000 ps] RD @ (7, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53558) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41580) -> -[ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51400) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 37264) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49241) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 32946) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47083) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28630) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44925) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 24314) -> [ 5000 ps] RD @ (7, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42766) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19996) -> -[ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40608) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 15680) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38449) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 11362) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36291) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7046) -> [ 5000 ps] RD @ (7, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34133) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2730) -> [ 5000 ps] RD @ (7, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 2500 ps] RD @ (0, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 63948) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64742) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62584) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 59632) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60425) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 55314) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58267) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 50998) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56108) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 46680) -> [ 5000 ps] RD @ (7, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53950) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 42364) -> -[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51792) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 38048) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 248) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49633) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 33730) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 248) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47475) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 29414) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45316) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 25096) -> [ 5000 ps] RD @ (7, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43158) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 20780) -> -[ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41000) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 16464) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38841) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 12146) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36683) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 7830) -> [ 5000 ps] RD @ (7, 408) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34524) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 3512) -> [ 5000 ps] RD @ (7, 408) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 2500 ps] RD @ (6, 240) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64732) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65134) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62976) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 60416) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60817) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56098) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58659) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51782) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56500) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47464) -> [ 5000 ps] RD @ (7, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54342) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43148) -> -[ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52184) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 38832) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 232) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50025) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 34514) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 232) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47867) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30198) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45708) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25880) -> [ 5000 ps] RD @ (7, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43550) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21564) -> -[ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41392) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 17248) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39233) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 12930) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37075) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8614) -> [ 5000 ps] RD @ (7, 280) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34916) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 4296) -> [ 5000 ps] RD @ (7, 280) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (4, 224) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 65516) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65526) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63368) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 61200) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61209) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 56882) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59051) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52566) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56892) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 48248) -> [ 5000 ps] RD @ (7, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54734) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 43932) -> -[ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52575) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 39614) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 216) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50417) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 35298) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 216) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48259) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 30982) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46100) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 26664) -> [ 5000 ps] RD @ (7, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43942) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 22348) -> -[ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41783) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 18030) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39625) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 13714) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37467) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 9398) -> [ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35308) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 5080) -> [ 5000 ps] RD @ (7, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 208) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33150) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 764) -> -[ 5000 ps] RD @ (7, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (2, 208) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 61982) -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63759) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61601) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 57666) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59443) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 53350) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57284) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49032) -> [ 5000 ps] RD @ (7, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55126) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 44716) -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52967) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 40398) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 200) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50809) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36082) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 200) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48651) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 31766) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46492) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 27448) -> [ 5000 ps] RD @ (7, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44334) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23132) -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42175) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 18814) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40017) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 14498) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37859) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 10182) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 5864) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 35700) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 192) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33542) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 1548) -> [ 5000 ps] RD @ (7, 24) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 62766) -> [ 5000 ps] RD @ (0, 192) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64151) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61993) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58450) -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59835) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54134) -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57676) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49816) -> [ 5000 ps] RD @ (7, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55518) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 45500) -> -[ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53359) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 41182) -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 184) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51201) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36866) -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 184) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 49042) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 32548) -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46884) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 28232) -> [ 5000 ps] RD @ (7, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44726) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 23916) -> -[ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42567) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 19598) -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40409) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 15282) -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 38250) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 10964) -> [ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36092) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 6648) -> [ 5000 ps] RD @ (7, 400) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33934) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 2332) -> -[ 5000 ps] RD @ (7, 400) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 63550) -> [ 5000 ps] RD @ (6, 176) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64543) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62385) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 59234) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60226) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 54916) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58068) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 50600) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55910) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 46284) -> [ 5000 ps] RD @ (7, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53751) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 41966) -> -[ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51593) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 37650) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 168) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49434) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 33332) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 168) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47276) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29016) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45118) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 24700) -> [ 5000 ps] RD @ (7, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42959) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 20382) -> -[ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40801) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 16066) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38642) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 11748) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36484) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 7432) -> [ 5000 ps] RD @ (7, 272) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34326) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3116) -> [ 5000 ps] RD @ (7, 272) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 64334) -> [ 5000 ps] RD @ (4, 160) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64935) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62777) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 60018) -> -[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60618) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 55700) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58460) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 51384) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56302) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47068) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54143) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 42750) -> [ 5000 ps] RD @ (7, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51985) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 38434) -> -[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49826) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 34116) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 152) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 47668) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 29800) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 45509) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 25482) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43351) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 21166) -> [ 5000 ps] RD @ (7, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41193) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 16850) -> -[ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39034) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 12532) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 144) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36876) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 8216) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 34717) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 3898) -> [ 5000 ps] RD @ (7, 144) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (2, 144) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 65118) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65327) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63169) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 60802) -> -[ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61010) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 56484) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 58852) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 52168) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 56693) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 47850) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54535) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 43534) -> [ 5000 ps] RD @ (7, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52377) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 39218) -> -[ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50218) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 34900) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48060) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 30584) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 45901) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 26266) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43743) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 21950) -> [ 5000 ps] RD @ (7, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41585) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 17634) -> -[ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39426) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 13316) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37268) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 9000) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35109) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 4682) -> [ 5000 ps] RD @ (7, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 32951) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 366) -> [ 5000 ps] RD @ (7, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 2500 ps] RD @ (0, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 61586) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63561) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61402) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 57268) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59244) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52952) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57085) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 48634) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54927) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 44318) -> [ 5000 ps] RD @ (7, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52769) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 40002) -> -[ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50610) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 35684) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 120) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48452) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 31368) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46293) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 27050) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44135) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 22734) -> [ 5000 ps] RD @ (7, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41976) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 18416) -> -[ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39818) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 14100) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37660) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 9784) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35501) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 5466) -> [ 5000 ps] RD @ (7, 392) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33343) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 1150) -> [ 5000 ps] RD @ (7, 392) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 2500 ps] RD @ (6, 112) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 62368) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63952) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61794) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 58052) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59636) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 53736) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57477) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 49418) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55319) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 45102) -> [ 5000 ps] RD @ (7, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53160) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 40784) -> -[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51002) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 36468) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 104) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48844) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 32152) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46685) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 27834) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44527) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 23518) -> [ 5000 ps] RD @ (7, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42368) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 19200) -> -[ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40210) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 14884) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38052) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 10568) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35893) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 6250) -> [ 5000 ps] RD @ (7, 264) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33735) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 1934) -> [ 5000 ps] RD @ (7, 264) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 2500 ps] RD @ (4, 96) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 63152) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64344) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62186) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 58836) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60028) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 54520) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57869) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 50202) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55711) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 45886) -> [ 5000 ps] RD @ (7, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53552) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 41568) -> -[ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51394) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 37252) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 88) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49236) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 32936) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 88) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47077) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 28618) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44919) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 24302) -> [ 5000 ps] RD @ (7, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42760) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 19984) -> -[ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40602) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 15668) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38443) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 11350) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36285) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 7034) -> [ 5000 ps] RD @ (7, 136) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34127) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 2718) -> [ 5000 ps] RD @ (7, 136) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 2500 ps] RD @ (2, 80) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 63936) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64736) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62578) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 59620) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60419) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 55302) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58261) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 50986) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56103) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 46670) -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53944) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 42352) -> -[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51786) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 38036) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 72) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49627) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 33718) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 72) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47469) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 29402) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 45311) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 25086) -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43152) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 20768) -> -[ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40994) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 16452) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38835) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 12134) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 36677) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 7818) -> [ 5000 ps] RD @ (7, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34519) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 3502) -> [ 5000 ps] RD @ (7, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 2500 ps] RD @ (0, 64) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 64720) -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65128) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 62970) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 60404) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 60811) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 56086) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 58653) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51770) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56495) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47454) -> [ 5000 ps] RD @ (7, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54336) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43136) -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52178) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 38820) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 56) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50019) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 34502) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 56) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 47861) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 30186) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] REF -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 25870) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45703) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43544) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 21552) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41386) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 17236) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 39227) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 12918) -> [ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37069) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 8602) -> [ 5000 ps] RD @ (7, 384) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 34910) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 4284) -> -[ 5000 ps] RD @ (7, 384) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 65504) -> [ 5000 ps] RD @ (6, 48) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65520) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 63362) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 61188) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61203) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 56870) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 59045) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 52554) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 56886) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 48236) -> [ 5000 ps] RD @ (7, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 54728) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 43920) -> -[ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52570) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 39604) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 40) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50411) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 35286) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 40) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 48253) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 30970) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46094) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 26652) -> [ 5000 ps] RD @ (7, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 43936) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 22336) -> -[ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 41778) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 18020) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 39619) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 13702) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 37461) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 9386) -> [ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 35302) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 5068) -> [ 5000 ps] RD @ (7, 256) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33144) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 752) -> -[ 5000 ps] RD @ (7, 256) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 61972) -> [ 5000 ps] RD @ (4, 32) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63754) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61595) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 57654) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59437) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 53338) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 57278) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 49020) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 55120) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 44704) -> [ 5000 ps] RD @ (7, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 52962) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 40388) -> -[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 50803) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 36070) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 24) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 48645) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 31754) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 46486) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 27436) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 44328) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 23120) -> [ 5000 ps] RD @ (7, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42170) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 18804) -> -[ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40011) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 14486) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 37853) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 10170) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 35694) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 5852) -> [ 5000 ps] RD @ (7, 128) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 33536) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 1536) -> [ 5000 ps] RD @ (7, 128) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (0, 62754) -> [ 5000 ps] RD @ (2, 16) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 64145) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 61987) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 58438) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 59829) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 54122) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 57670) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 49804) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 55512) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 45488) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 53353) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 41170) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 51195) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 36854) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 8) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 49037) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 32538) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 46878) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 28220) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 44720) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 23904) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 42561) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 19586) -> [ 5000 ps] RD @ (7, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 40403) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 15270) -> -[ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 38245) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (0, 10954) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (0, 0) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 36086) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 6636) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (7, 33928) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (0, 2320) -> [ 5000 ps] RD @ (7, 0) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 2500 ps] RD @ (0, 0) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 64537) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 63539) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 62379) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59223) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 60221) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 54907) -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 58062) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 50589) -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (6, 55904) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 46273) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 53745) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 41955) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 51587) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 37639) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 49429) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 33323) -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 47270) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 29005) -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (6, 45112) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 24689) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 42953) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 20371) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 40795) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16055) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 38637) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 11739) -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (6, 36478) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 7421) -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (6, 34320) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1016) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (7, 3105) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 64324) -> [ 5000 ps] RD @ (7, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 64929) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 64323) -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (4, 60008) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 62771) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 60007) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 55690) -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 60612) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 55689) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 51374) -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58454) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (5, 51373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 47058) -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 56296) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 47057) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 42740) -> [ 5000 ps] RD @ (5, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54137) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 42739) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 38424) -> -[ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 51979) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 38423) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 34106) -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 49820) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 34105) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 29790) -> [ 5000 ps] RD @ (5, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 47662) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (5, 29789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 25474) -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 45504) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 25473) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 21156) -> [ 5000 ps] RD @ (5, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 43345) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 21155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 16840) -> -[ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 41187) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 16839) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (4, 12522) -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 39028) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 12521) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 8206) -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 36870) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (4) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (5, 8205) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (4, 3890) -> [ 5000 ps] RD @ (5, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 34712) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (5, 3889) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 65108) -> [ 5000 ps] RD @ (5, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 65321) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 65107) -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (2, 60792) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 63163) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 60791) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 56474) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 61004) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 56473) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 52158) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 58846) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (3, 52157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 47842) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 56688) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 47841) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 43524) -> [ 5000 ps] RD @ (3, 984) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 54529) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 43523) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (2, 39208) -> -[ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 52371) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (2) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (3, 39207) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (2, 34890) -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 50212) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 34889) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 984) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 48054) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 30573) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 45896) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (3, 26257) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 43737) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 21939) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 41579) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 17623) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 39420) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 13305) -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 37262) -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 8989) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 35104) -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (3, 4673) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 976) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 32945) -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 760) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 355) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 61575) -> [ 5000 ps] RD @ (3, 976) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 63555) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61396) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 57257) -> -[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59238) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 52941) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57079) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 48623) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 54921) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 44307) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 52763) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 39991) -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50604) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 35673) -> -[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 968) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48446) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 31357) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46287) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 27039) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 44129) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 22723) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 41971) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 18407) -> [ 5000 ps] RD @ (6, 632) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39812) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 14089) -> -[ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37654) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 9773) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 960) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 35495) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 5455) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 33337) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 1139) -> [ 5000 ps] RD @ (6, 632) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 2500 ps] RD @ (1, 960) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 62359) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 63947) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61788) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 58041) -> -[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59630) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 53725) -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57471) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 49407) -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 55313) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 45091) -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 53155) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 40775) -> [ 5000 ps] RD @ (6, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50996) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 36457) -> -[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 952) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48838) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 32141) -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46679) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 27823) -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 44521) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 23507) -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 42363) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 19191) -> [ 5000 ps] RD @ (6, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40204) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 14873) -> -[ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 10557) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 38046) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 35887) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 6239) -> [ 5000 ps] RD @ (6, 1008) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 33729) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 1923) -> [ 5000 ps] RD @ (6, 1008) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (5, 63143) -> [ 5000 ps] RD @ (7, 944) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 64339) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62180) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 58825) -> -[ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60022) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 54509) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57863) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 50191) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 55705) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 45875) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 53546) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 41557) -> [ 5000 ps] RD @ (6, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51388) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 37241) -> -[ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 49230) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 32925) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 936) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 47071) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 28607) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 44913) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 24291) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 42754) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 19973) -> [ 5000 ps] RD @ (6, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40596) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 15657) -> -[ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 38438) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 11341) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 928) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36279) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 7023) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 34121) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 2707) -> [ 5000 ps] RD @ (6, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (3, 63925) -> [ 5000 ps] RD @ (5, 928) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 64730) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62572) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 59609) -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60414) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 55293) -> -[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58255) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 50975) -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56097) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 46659) -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 53938) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 42341) -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51780) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 38025) -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 49622) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 33709) -> -[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 920) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 47463) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 29391) -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 45305) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 25075) -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 43146) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 20757) -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40988) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 16441) -> [ 5000 ps] RD @ (6, 752) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 38830) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 12125) -> -[ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36671) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 7807) -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 912) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 34513) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 3491) -> [ 5000 ps] RD @ (6, 752) -> [ 2500 ps] NOP -> [ 2500 ps] ACT @ (1, 64709) -> -[ 5000 ps] RD @ (3, 912) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 65122) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 62964) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 60393) -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60806) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 56077) -> [ 5000 ps] RD @ (6, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58647) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 51759) -> -[ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56489) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 47443) -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 54330) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 43125) -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 52172) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 38809) -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50013) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 34491) -> [ 5000 ps] RD @ (6, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 904) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 47855) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 30175) -> -[ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 45697) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 25859) -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 43538) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 21541) -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 41380) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 17225) -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39221) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 12907) -> [ 5000 ps] RD @ (6, 624) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37063) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 8591) -> -[ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 34905) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 4275) -> [ 5000 ps] RD @ (6, 624) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 2500 ps] RD @ (1, 896) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 65493) -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 65514) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 63356) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 61177) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61197) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 56859) -> [ 5000 ps] RD @ (6, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59039) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 52543) -> -[ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56881) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 48227) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 54722) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 43909) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 52564) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 39593) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50405) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 35275) -> [ 5000 ps] RD @ (6, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 888) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48247) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 30959) -> -[ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46089) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 26643) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 43930) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 22325) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 41772) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 18009) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39613) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 13691) -> [ 5000 ps] RD @ (6, 1000) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37455) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 9375) -> -[ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 35297) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 5059) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 880) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 33138) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 741) -> [ 5000 ps] RD @ (6, 1000) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 2500 ps] RD @ (7, 880) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 61961) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 63748) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61589) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 57643) -> [ 5000 ps] RD @ (6, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59431) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 53327) -> -[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57273) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 49011) -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55114) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 44693) -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 52956) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 40377) -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50797) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 36059) -> [ 5000 ps] RD @ (6, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48639) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 31743) -> -[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46480) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 27425) -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44322) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 23109) -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 42164) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 18793) -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40005) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 14475) -> [ 5000 ps] RD @ (6, 872) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37847) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 10159) -> -[ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 35688) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 5841) -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 33530) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 1525) -> [ 5000 ps] RD @ (6, 872) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 2500 ps] RD @ (5, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 62745) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 64140) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61981) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 58427) -> [ 5000 ps] RD @ (6, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59823) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 54111) -> -[ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57664) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 49793) -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55506) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 45477) -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 53348) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 41161) -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51189) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 36843) -> [ 5000 ps] RD @ (6, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 856) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 49031) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 32527) -> -[ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46872) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 28209) -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44714) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 23893) -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 42556) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 19577) -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40397) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 15259) -> [ 5000 ps] RD @ (6, 744) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 38239) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 10943) -> -[ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36080) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 6625) -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 848) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 33922) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 2309) -> [ 5000 ps] RD @ (6, 744) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 2500 ps] RD @ (3, 848) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 63529) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 64532) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62373) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 59211) -> [ 5000 ps] RD @ (6, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60215) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 54895) -> -[ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58056) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 50577) -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55898) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 46261) -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 53740) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 41945) -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51581) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 37627) -> [ 5000 ps] RD @ (6, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 49423) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 33311) -> -[ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 840) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 47264) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 28993) -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 45106) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 24677) -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 42947) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 20359) -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 40789) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 16043) -> [ 5000 ps] RD @ (6, 616) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 38631) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 11727) -> -[ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36472) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 7409) -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 832) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 34314) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 3093) -> [ 5000 ps] RD @ (6, 616) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 2500 ps] RD @ (1, 832) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 64311) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 64923) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 62765) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 59995) -> [ 5000 ps] RD @ (6, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60607) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 55679) -> -[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58448) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 51361) -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56290) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 47045) -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 54131) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 42727) -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 51973) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 38411) -> [ 5000 ps] RD @ (6, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 49815) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 34095) -> -[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 824) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 47656) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 29777) -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 45498) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 25461) -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 43339) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 21143) -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 41181) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 16827) -> [ 5000 ps] RD @ (6, 992) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39023) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 12511) -> -[ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 36864) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (7, 8193) -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (7, 816) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (7) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 34706) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (7, 3877) -> [ 5000 ps] RD @ (6, 992) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 2500 ps] RD @ (7, 816) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 65095) -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 65315) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 63157) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 60779) -> [ 5000 ps] RD @ (6, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 60999) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 56463) -> -[ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 58840) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 52145) -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 56682) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 47829) -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 54523) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 43511) -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 52365) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 39195) -> [ 5000 ps] RD @ (6, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50207) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 34879) -> -[ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 808) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (0) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] REF -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 30561) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 48048) -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 45890) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 26245) -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 43731) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 21927) -> [ 5000 ps] RD @ (6, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 41573) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 17611) -> -[ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39414) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (5, 13293) -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37256) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 8977) -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 35098) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 4661) -> [ 5000 ps] RD @ (6, 864) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (5) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 32939) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (5, 343) -> [ 5000 ps] RD @ (6, 864) -> -[ 2500 ps] NOP -> [ 2500 ps] ACT @ (3, 61563) -> [ 5000 ps] RD @ (5, 800) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (6, 63549) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61390) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 57245) -> -[ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59232) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 52929) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57074) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 48613) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 54915) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 44295) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 52757) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 39979) -> [ 5000 ps] RD @ (6, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50598) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 35661) -> -[ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 792) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48440) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 31345) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46282) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 27029) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 44123) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 22711) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 41965) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 18395) -> [ 5000 ps] RD @ (6, 736) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 39806) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 14077) -> -[ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 37648) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (3, 9761) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (3, 784) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 35490) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 5445) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (3) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 33331) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (3, 1127) -> [ 5000 ps] RD @ (6, 736) -> [ 2500 ps] NOP -> -[ 2500 ps] ACT @ (1, 62347) -> [ 5000 ps] RD @ (3, 784) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (6, 63941) -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 61782) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 58029) -> [ 5000 ps] RD @ (6, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 59624) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 53713) -> -[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 57466) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 49397) -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 55307) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 45079) -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> -[ 2500 ps] ACT @ (6, 53149) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 40763) -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> -[ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 50990) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 36445) -> [ 5000 ps] RD @ (6, 608) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 776) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> [ 2500 ps] NOP -> -[ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 48832) -> [ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 32129) -> -[ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> --------------------------------- -DONE TEST 2: RANDOM -Number of Operations: 2304 -Time Started: 264960 ns -Time Done: 436720 ns -Average Rate: 74 ns/request --------------------------------- - - -[ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> [ 5000 ps] NOP -> -[ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 46674) -> [ 7500 ps] NOP -> -[ 2500 ps] ACT @ (1, 27813) -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 5000 ps] RD @ (1, 768) -> -[ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (6) -> -[ 5000 ps] NOP -> [ 2500 ps] NOP -> [ 2500 ps] PRE @ (1) -> [ 5000 ps] NOP -> [ 2500 ps] ACT @ (6, 44515) -> -[ 7500 ps] NOP -> [ 2500 ps] ACT @ (1, 23495) -> [ 5000 ps] RD @ (6, 608) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> -[ 5000 ps] RD @ (1, 768) -> [ 2500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> FAILED: Address = 18962385, expected data = 8fb2fe1f8fb1f01f8fb0e21f8fafd41f8faec61f8fadb81f8facaa1f8fab9c1f8faa8e1f8fa9801f8fa8741f8fa7661f8fa6581f8fa54a1f8fa43c1f8fa32e1f, read data = 00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000123456789 @ 436900000.0 ps -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> -[ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> -[ 2500 ps] NOP -> [ 7500 ps] NOP -> [ 2500 ps] NOP -> [ 7500 ps] NOP -> - -------- SUMMARY ------- -Number of Writes = 4608 -Number of Reads = 4608 -Number of Success = 4604 -Number of Fails = 4 -Number of Injected Errors = 4 - - - -TEST CALIBRATION -[-]: write_test_address_counter = 500 -[-]: read_test_address_counter = 200 -[-]: correct_read_data = 349 -[-]: wrong_read_data = 0 -$stop called at time : 438210 ns : File "/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" Line 705 -run: Time (s): cpu = 00:00:26 ; elapsed = 00:45:36 . Memory (MB): peak = 2856.781 ; gain = 8.004 ; free physical = 7430 ; free virtual = 13219 -## quit -INFO: xsimkernel Simulation Memory Usage: 237092 KB (Peak: 294888 KB), Simulation CPU Usage: 2731920 ms -INFO: [Common 17-206] Exiting xsim at Sun Jul 28 00:37:47 2024... diff --git a/testbench/xsim/test_ecc_3.sh b/testbench/xsim/test_ecc_3.sh deleted file mode 100755 index d8b152d..0000000 --- a/testbench/xsim/test_ecc_3.sh +++ /dev/null @@ -1,129 +0,0 @@ -#!/bin/bash -f -#********************************************************************************************************* -# Vivado (TM) v2022.1 (64-bit) -# -# Filename : ddr3_dimm_micron_sim.sh -# Simulator : Xilinx Vivado Simulator -# Description : Simulation script for compiling, elaborating and verifying the project source files. -# The script will automatically create the design libraries sub-directories in the run -# directory, add the library logical mappings in the simulator setup file, create default -# 'do/prj' file, execute compilation, elaboration and simulation steps. -# -# Generated by Vivado on Sat Jul 27 15:51:00 PST 2024 -# SW Build 3526262 on Mon Apr 18 15:47:01 MDT 2022 -# -# Tool Version Limit: 2022.04 -# -# usage: ddr3_dimm_micron_sim.sh [-help] -# usage: ddr3_dimm_micron_sim.sh [-lib_map_path] -# usage: ddr3_dimm_micron_sim.sh [-noclean_files] -# usage: ddr3_dimm_micron_sim.sh [-reset_run] -# -#********************************************************************************************************* - -# Set xvlog options -xvlog_opts="--incr --relax -L uvm" - -# Script info -echo -e "ddr3_dimm_micron_sim.sh - Script generated by export_simulation (Vivado v2022.1 (64-bit)-id)\n" - -# Main steps -run() -{ - check_args $# $1 - setup $1 $2 - compile - elaborate - simulate -} - -# RUN_STEP: -compile() -{ - xvlog $xvlog_opts -prj vlog.prj 2>&1 | tee compile.log -} - -# RUN_STEP: -elaborate() -{ - xelab -generic_top "ECC_ENABLE=3" --incr --debug typical --relax --mt auto -L xil_defaultlib -L uvm -L unisims_ver -L unimacro_ver -L secureip --snapshot ddr3_dimm_micron_sim xil_defaultlib.ddr3_dimm_micron_sim xil_defaultlib.glbl -log elaborate.log -} - -# RUN_STEP: -simulate() -{ - xsim ddr3_dimm_micron_sim -key {Behavioral:sim_1:Functional:ddr3_dimm_micron_sim} -tclbatch cmd.tcl -log simulate.log -} - -# STEP: setup -setup() -{ - case $1 in - "-lib_map_path" ) - if [[ ($2 == "") ]]; then - echo -e "ERROR: Simulation library directory path not specified (type \"./ddr3_dimm_micron_sim.sh -help\" for more information)\n" - exit 1 - fi - ;; - "-reset_run" ) - reset_run - echo -e "INFO: Simulation run files deleted.\n" - exit 0 - ;; - "-noclean_files" ) - # do not remove previous data - ;; - * ) - esac - - # Add any setup/initialization commands here:- - - # - -} - -# Delete generated data from the previous run -reset_run() -{ - files_to_remove=(xelab.pb xsim.jou xvhdl.log xvlog.log compile.log elaborate.log simulate.log xelab.log xsim.log run.log xvhdl.pb xvlog.pb ddr3_dimm_micron_sim.wdb xsim.dir) - for (( i=0; i<${#files_to_remove[*]}; i++ )); do - file="${files_to_remove[i]}" - if [[ -e $file ]]; then - rm -rf $file - fi - done -} - -# Check command line arguments -check_args() -{ - if [[ ($1 == 1 ) && ($2 != "-lib_map_path" && $2 != "-noclean_files" && $2 != "-reset_run" && $2 != "-help" && $2 != "-h") ]]; then - echo -e "ERROR: Unknown option specified '$2' (type \"./ddr3_dimm_micron_sim.sh -help\" for more information)\n" - exit 1 - fi - - if [[ ($2 == "-help" || $2 == "-h") ]]; then - usage - fi -} - -# Script usage -usage() -{ - msg="Usage: ddr3_dimm_micron_sim.sh [-help]\n\ -Usage: ddr3_dimm_micron_sim.sh [-lib_map_path]\n\ -Usage: ddr3_dimm_micron_sim.sh [-reset_run]\n\ -Usage: ddr3_dimm_micron_sim.sh [-noclean_files]\n\n\ -[-help] -- Print help information for this script\n\n\ -[-lib_map_path ] -- Compiled simulation library directory path. The simulation library is compiled\n\ -using the compile_simlib tcl command. Please see 'compile_simlib -help' for more information.\n\n\ -[-reset_run] -- Recreate simulator setup files and library mappings for a clean run. The generated files\n\ -from the previous run will be removed. If you don't want to remove the simulator generated files, use the\n\ --noclean_files switch.\n\n\ -[-noclean_files] -- Reset previous run, but do not remove simulator generated files from the previous run.\n\n" - echo -e $msg - exit 1 -} - -# Launch script -run $1 $2 diff --git a/testbench/xsim/vlog.prj b/testbench/xsim/vlog.prj index 888ec06..09d5fa1 100644 --- a/testbench/xsim/vlog.prj +++ b/testbench/xsim/vlog.prj @@ -1,15 +1,13 @@ -verilog xil_defaultlib --include "../" \ -"../../rtl/ddr3_controller.v" \ -"../../rtl/ddr3_phy.v" \ -"../../rtl/ddr3_top.v" \ +verilog xil_defaultlib --include "/home/ajacobo/Desktop/UberDDR3/testbench" --include "/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0" \ +"/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_controller.v" \ +"/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_phy.v" \ +"/home/ajacobo/Desktop/UberDDR3/rtl/ddr3_top.v" \ -sv xil_defaultlib --include "../" \ -"../ddr3.sv" \ -"../../rtl/ecc/ecc_dec.sv" \ -"../../rtl/ecc/ecc_enc.sv" \ -"../ddr3_dimm_micron_sim.sv" \ -"../ddr3_module.sv" \ +sv xil_defaultlib --include "/home/ajacobo/Desktop/UberDDR3/testbench" --include "/home/ajacobo/Desktop/enclustra_vivado/enclustra_vivado.gen/sources_1/ip/clk_wiz_0" \ +"/home/ajacobo/Desktop/UberDDR3/testbench/ddr3.sv" \ +"/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_module.sv" \ +"/home/ajacobo/Desktop/UberDDR3/testbench/ddr3_dimm_micron_sim.sv" \ -verilog xil_defaultlib "glbl.v" +verilog xil_defaultlib "/home/ajacobo/Desktop/UberDDR3/testbench/xsim/glbl.v" nosort diff --git a/testbench/xsim/xsim.ini b/testbench/xsim/xsim.ini old mode 100644 new mode 100755 index e8199b2..284ef2b --- a/testbench/xsim/xsim.ini +++ b/testbench/xsim/xsim.ini @@ -1 +1,480 @@ -xil_defaultlib=xsim.dir/xil_defaultlib +std=$RDI_DATADIR/xsim/vhdl/std +ieee=$RDI_DATADIR/xsim/vhdl/ieee +ieee_proposed=$RDI_DATADIR/xsim/vhdl/ieee_proposed +vl=$RDI_DATADIR/xsim/vhdl/vl +synopsys=$RDI_DATADIR/xsim/vhdl/synopsys +uvm=$RDI_DATADIR/xsim/system_verilog/uvm +secureip=$RDI_DATADIR/xsim/verilog/secureip +unisim=$RDI_DATADIR/xsim/vhdl/unisim +unimacro=$RDI_DATADIR/xsim/vhdl/unimacro +unifast=$RDI_DATADIR/xsim/vhdl/unifast +unisims_ver=$RDI_DATADIR/xsim/verilog/unisims_ver +unimacro_ver=$RDI_DATADIR/xsim/verilog/unimacro_ver +unifast_ver=$RDI_DATADIR/xsim/verilog/unifast_ver +simprims_ver=$RDI_DATADIR/xsim/verilog/simprims_ver +gtwizard_ultrascale_v1_5_4=$RDI_DATADIR/xsim/ip/gtwizard_ultrascale_v1_5_4 +microblaze_v9_5_4=$RDI_DATADIR/xsim/ip/microblaze_v9_5_4 +emb_mem_gen_v1_0_6=$RDI_DATADIR/xsim/ip/emb_mem_gen_v1_0_6 +common_cpp_v1_0=$RDI_DATADIR/xsim/ip/common_cpp_v1_0 +ptp_1588_timer_syncer_v2_0_3=$RDI_DATADIR/xsim/ip/ptp_1588_timer_syncer_v2_0_3 +tcc_decoder_3gppmm_v2_0_23=$RDI_DATADIR/xsim/ip/tcc_decoder_3gppmm_v2_0_23 +v_warp_filter_v1_0_2=$RDI_DATADIR/xsim/ip/v_warp_filter_v1_0_2 +fc32_rs_fec_v1_0_21=$RDI_DATADIR/xsim/ip/fc32_rs_fec_v1_0_21 +vid_phy_controller_v2_1_13=$RDI_DATADIR/xsim/ip/vid_phy_controller_v2_1_13 +aurora_8b10b_versal_v1_0_1=$RDI_DATADIR/xsim/ip/aurora_8b10b_versal_v1_0_1 +axis_accelerator_adapter_v2_1_16=$RDI_DATADIR/xsim/ip/axis_accelerator_adapter_v2_1_16 +axis_itct_v1_0_0=$RDI_DATADIR/xsim/ip/axis_itct_v1_0_0 +noc_hbm_v1_0_0=$RDI_DATADIR/xsim/ip/noc_hbm_v1_0_0 +axi_infrastructure_v1_1_0=$RDI_DATADIR/xsim/ip/axi_infrastructure_v1_1_0 +v_smpte_uhdsdi_v1_0_9=$RDI_DATADIR/xsim/ip/v_smpte_uhdsdi_v1_0_9 +axi_firewall_v1_2_1=$RDI_DATADIR/xsim/ip/axi_firewall_v1_2_1 +xbip_dsp48_wrapper_v3_0_4=$RDI_DATADIR/xsim/ip/xbip_dsp48_wrapper_v3_0_4 +axi_mm2s_mapper_v1_1_25=$RDI_DATADIR/xsim/ip/axi_mm2s_mapper_v1_1_25 +v_tpg_v8_1_5=$RDI_DATADIR/xsim/ip/v_tpg_v8_1_5 +ll_compress_v1_1_0=$RDI_DATADIR/xsim/ip/ll_compress_v1_1_0 +cpm4_v1_0_7=$RDI_DATADIR/xsim/ip/cpm4_v1_0_7 +axi_jtag_v1_0_0=$RDI_DATADIR/xsim/ip/axi_jtag_v1_0_0 +convolution_v9_0_16=$RDI_DATADIR/xsim/ip/convolution_v9_0_16 +tcc_encoder_3gpplte_v4_0_16=$RDI_DATADIR/xsim/ip/tcc_encoder_3gpplte_v4_0_16 +axi_timebase_wdt_v3_0_18=$RDI_DATADIR/xsim/ip/axi_timebase_wdt_v3_0_18 +xtlm_simple_interconnect_v1_0=$RDI_DATADIR/xsim/ip/xtlm_simple_interconnect_v1_0 +axi_epc_v2_0_29=$RDI_DATADIR/xsim/ip/axi_epc_v2_0_29 +dft_v4_0_16=$RDI_DATADIR/xsim/ip/dft_v4_0_16 +axi_interconnect_v1_7_20=$RDI_DATADIR/xsim/ip/axi_interconnect_v1_7_20 +gmii_to_rgmii_v4_1_4=$RDI_DATADIR/xsim/ip/gmii_to_rgmii_v4_1_4 +clk_gen_sim_v1_0_2=$RDI_DATADIR/xsim/ip/clk_gen_sim_v1_0_2 +ieee802d3_50g_rs_fec_v2_0_11=$RDI_DATADIR/xsim/ip/ieee802d3_50g_rs_fec_v2_0_11 +axi_datamover_v5_1_28=$RDI_DATADIR/xsim/ip/axi_datamover_v5_1_28 +zynq_ultra_ps_e_vip_v1_0_12=$RDI_DATADIR/xsim/ip/zynq_ultra_ps_e_vip_v1_0_12 +xscl=$RDI_DATADIR/xsim/ip/xscl +bs_mux_v1_0_0=$RDI_DATADIR/xsim/ip/bs_mux_v1_0_0 +vby1hs_v1_0_2=$RDI_DATADIR/xsim/ip/vby1hs_v1_0_2 +tmr_manager_v1_0_9=$RDI_DATADIR/xsim/ip/tmr_manager_v1_0_9 +polar_v1_1_0=$RDI_DATADIR/xsim/ip/polar_v1_1_0 +vitis_net_p4_v1_1_0=$RDI_DATADIR/xsim/ip/vitis_net_p4_v1_1_0 +timer_sync_1588_v1_2_4=$RDI_DATADIR/xsim/ip/timer_sync_1588_v1_2_4 +mutex_v2_1_11=$RDI_DATADIR/xsim/ip/mutex_v2_1_11 +fifo_generator_v13_0_6=$RDI_DATADIR/xsim/ip/fifo_generator_v13_0_6 +vid_phy_controller_v2_2_13=$RDI_DATADIR/xsim/ip/vid_phy_controller_v2_2_13 +noc_nps6_v1_0_0=$RDI_DATADIR/xsim/ip/noc_nps6_v1_0_0 +xpm_cdc_gen_v1_0_1=$RDI_DATADIR/xsim/ip/xpm_cdc_gen_v1_0_1 +ethernet_1_10_25g_v2_7_5=$RDI_DATADIR/xsim/ip/ethernet_1_10_25g_v2_7_5 +axi_register_slice_v2_1_26=$RDI_DATADIR/xsim/ip/axi_register_slice_v2_1_26 +hdcp_keymngmt_blk_v1_0_0=$RDI_DATADIR/xsim/ip/hdcp_keymngmt_blk_v1_0_0 +v_smpte_uhdsdi_rx_v1_0_1=$RDI_DATADIR/xsim/ip/v_smpte_uhdsdi_rx_v1_0_1 +axi_ethernet_buffer_v2_0_24=$RDI_DATADIR/xsim/ip/axi_ethernet_buffer_v2_0_24 +axis_switch_sc_v1_1=$RDI_DATADIR/xsim/ip/axis_switch_sc_v1_1 +zynq_ultra_ps_e_v3_3_7=$RDI_DATADIR/xsim/ip/zynq_ultra_ps_e_v3_3_7 +axi_sg_v4_1_15=$RDI_DATADIR/xsim/ip/axi_sg_v4_1_15 +xdma_v4_1_17=$RDI_DATADIR/xsim/ip/xdma_v4_1_17 +axi_uartlite_v2_0_30=$RDI_DATADIR/xsim/ip/axi_uartlite_v2_0_30 +bsip_v1_1_0=$RDI_DATADIR/xsim/ip/bsip_v1_1_0 +shell_utils_msp432_bsl_crc_gen_v1_0_0=$RDI_DATADIR/xsim/ip/shell_utils_msp432_bsl_crc_gen_v1_0_0 +noc_nps4_v1_0_0=$RDI_DATADIR/xsim/ip/noc_nps4_v1_0_0 +axi_lite_ipif_v3_0_4=$RDI_DATADIR/xsim/ip/axi_lite_ipif_v3_0_4 +axi_master_burst_v2_0_7=$RDI_DATADIR/xsim/ip/axi_master_burst_v2_0_7 +uram_rd_back_v1_0_2=$RDI_DATADIR/xsim/ip/uram_rd_back_v1_0_2 +amm_axi_bridge_v1_0_12=$RDI_DATADIR/xsim/ip/amm_axi_bridge_v1_0_12 +rwd_tlmmodel_v1=$RDI_DATADIR/xsim/ip/rwd_tlmmodel_v1 +pl_fileio_v1_0_0=$RDI_DATADIR/xsim/ip/pl_fileio_v1_0_0 +displayport_v7_0_0=$RDI_DATADIR/xsim/ip/displayport_v7_0_0 +remote_port_sc_v4=$RDI_DATADIR/xsim/ip/remote_port_sc_v4 +fit_timer_v2_0_10=$RDI_DATADIR/xsim/ip/fit_timer_v2_0_10 +noc_sc_v1_0_0=$RDI_DATADIR/xsim/ip/noc_sc_v1_0_0 +ieee802d3_50g_rs_fec_v1_0_19=$RDI_DATADIR/xsim/ip/ieee802d3_50g_rs_fec_v1_0_19 +pci64_v5_0_11=$RDI_DATADIR/xsim/ip/pci64_v5_0_11 +axis_dwidth_converter_v1_1_25=$RDI_DATADIR/xsim/ip/axis_dwidth_converter_v1_1_25 +ai_noc=$RDI_DATADIR/xsim/ip/ai_noc +v_vcresampler_v1_1_5=$RDI_DATADIR/xsim/ip/v_vcresampler_v1_1_5 +xdfe_resampler_v1_0_4=$RDI_DATADIR/xsim/ip/xdfe_resampler_v1_0_4 +v_axi4s_remap_v1_0_19=$RDI_DATADIR/xsim/ip/v_axi4s_remap_v1_0_19 +xlconcat_v2_1_4=$RDI_DATADIR/xsim/ip/xlconcat_v2_1_4 +axi_timer_v2_0_28=$RDI_DATADIR/xsim/ip/axi_timer_v2_0_28 +xbip_dsp48_multadd_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_dsp48_multadd_v3_0_6 +xdfe_equalizer_v1_0_4=$RDI_DATADIR/xsim/ip/xdfe_equalizer_v1_0_4 +gtwizard_ultrascale_v1_6_13=$RDI_DATADIR/xsim/ip/gtwizard_ultrascale_v1_6_13 +axis_clock_converter_v1_1_27=$RDI_DATADIR/xsim/ip/axis_clock_converter_v1_1_27 +tsn_endpoint_ethernet_mac_block_v1_0_11=$RDI_DATADIR/xsim/ip/tsn_endpoint_ethernet_mac_block_v1_0_11 +axis_vio_v1_0_6=$RDI_DATADIR/xsim/ip/axis_vio_v1_0_6 +dfx_controller_v1_0_3=$RDI_DATADIR/xsim/ip/dfx_controller_v1_0_3 +axi_remapper_tx_v1_0_0=$RDI_DATADIR/xsim/ip/axi_remapper_tx_v1_0_0 +ahblite_axi_bridge_v3_0_21=$RDI_DATADIR/xsim/ip/ahblite_axi_bridge_v3_0_21 +v_smpte_uhdsdi_tx_v1_0_1=$RDI_DATADIR/xsim/ip/v_smpte_uhdsdi_tx_v1_0_1 +viterbi_v9_1_13=$RDI_DATADIR/xsim/ip/viterbi_v9_1_13 +axi4stream_vip_v1_1_12=$RDI_DATADIR/xsim/ip/axi4stream_vip_v1_1_12 +etrnic_v1_1_5=$RDI_DATADIR/xsim/ip/etrnic_v1_1_5 +adc_dac_if_phy_v1_0_0=$RDI_DATADIR/xsim/ip/adc_dac_if_phy_v1_0_0 +ai_pl=$RDI_DATADIR/xsim/ip/ai_pl +axi_data_fifo_v2_1_25=$RDI_DATADIR/xsim/ip/axi_data_fifo_v2_1_25 +axi_dwidth_converter_v2_1_26=$RDI_DATADIR/xsim/ip/axi_dwidth_converter_v2_1_26 +cordic_v6_0_18=$RDI_DATADIR/xsim/ip/cordic_v6_0_18 +axi_lmb_bridge_v1_0_0=$RDI_DATADIR/xsim/ip/axi_lmb_bridge_v1_0_0 +g975_efec_i7_v2_0_18=$RDI_DATADIR/xsim/ip/g975_efec_i7_v2_0_18 +c_accum_v12_0_14=$RDI_DATADIR/xsim/ip/c_accum_v12_0_14 +trace_s2mm_v1_2_0=$RDI_DATADIR/xsim/ip/trace_s2mm_v1_2_0 +axis_broadcaster_v1_1_25=$RDI_DATADIR/xsim/ip/axis_broadcaster_v1_1_25 +axis_ila_adv_trig_v1_0_0=$RDI_DATADIR/xsim/ip/axis_ila_adv_trig_v1_0_0 +v_tc_v6_2_4=$RDI_DATADIR/xsim/ip/v_tc_v6_2_4 +icap_arb_v1_0_1=$RDI_DATADIR/xsim/ip/icap_arb_v1_0_1 +dsp_macro_v1_0_2=$RDI_DATADIR/xsim/ip/dsp_macro_v1_0_2 +v_dp_axi4s_vid_out_v1_0_4=$RDI_DATADIR/xsim/ip/v_dp_axi4s_vid_out_v1_0_4 +v_vid_in_axi4s_v4_0_9=$RDI_DATADIR/xsim/ip/v_vid_in_axi4s_v4_0_9 +qdriv_pl_v1_0_7=$RDI_DATADIR/xsim/ip/qdriv_pl_v1_0_7 +proc_sys_reset_v5_0_13=$RDI_DATADIR/xsim/ip/proc_sys_reset_v5_0_13 +v_axi4s_remap_v1_1_5=$RDI_DATADIR/xsim/ip/v_axi4s_remap_v1_1_5 +pr_decoupler_v1_0_10=$RDI_DATADIR/xsim/ip/pr_decoupler_v1_0_10 +fir_compiler_v5_2_6=$RDI_DATADIR/xsim/ip/fir_compiler_v5_2_6 +mem_pl_v1_0_0=$RDI_DATADIR/xsim/ip/mem_pl_v1_0_0 +axi_hwicap_v3_0_30=$RDI_DATADIR/xsim/ip/axi_hwicap_v3_0_30 +hdmi_gt_controller_v1_0_7=$RDI_DATADIR/xsim/ip/hdmi_gt_controller_v1_0_7 +axis_ila_pp_v1_0_0=$RDI_DATADIR/xsim/ip/axis_ila_pp_v1_0_0 +iomodule_v3_0=$RDI_DATADIR/xsim/ip/iomodule_v3_0 +axi_utils_v2_0_6=$RDI_DATADIR/xsim/ip/axi_utils_v2_0_6 +ta_dma_v1_0_10=$RDI_DATADIR/xsim/ip/ta_dma_v1_0_10 +xdfe_common_v1_0_0=$RDI_DATADIR/xsim/ip/xdfe_common_v1_0_0 +canfd_v3_0_5=$RDI_DATADIR/xsim/ip/canfd_v3_0_5 +dcmac_v2_0_0=$RDI_DATADIR/xsim/ip/dcmac_v2_0_0 +axi_dbg_hub=$RDI_DATADIR/xsim/ip/axi_dbg_hub +axi_msg_v1_0_8=$RDI_DATADIR/xsim/ip/axi_msg_v1_0_8 +axi_vdma_v6_3_14=$RDI_DATADIR/xsim/ip/axi_vdma_v6_3_14 +v_vid_in_axi4s_v5_0_1=$RDI_DATADIR/xsim/ip/v_vid_in_axi4s_v5_0_1 +debug_tcp_server_v1=$RDI_DATADIR/xsim/ip/debug_tcp_server_v1 +lmb_bram_if_cntlr_v4_0_21=$RDI_DATADIR/xsim/ip/lmb_bram_if_cntlr_v4_0_21 +axi_tg_lib=$RDI_DATADIR/xsim/ip/axi_tg_lib +v_scenechange_v1_1_4=$RDI_DATADIR/xsim/ip/v_scenechange_v1_1_4 +in_system_ibert_v1_0_16=$RDI_DATADIR/xsim/ip/in_system_ibert_v1_0_16 +tmr_sem_v1_0_22=$RDI_DATADIR/xsim/ip/tmr_sem_v1_0_22 +pci32_v5_0_12=$RDI_DATADIR/xsim/ip/pci32_v5_0_12 +axi_iic_v2_1_2=$RDI_DATADIR/xsim/ip/axi_iic_v2_1_2 +xtlm_ap_ctrl_v1_0=$RDI_DATADIR/xsim/ip/xtlm_ap_ctrl_v1_0 +axi_interface_monitor_v1_1_0=$RDI_DATADIR/xsim/ip/axi_interface_monitor_v1_1_0 +g709_fec_v2_4_5=$RDI_DATADIR/xsim/ip/g709_fec_v2_4_5 +high_speed_selectio_wiz_v3_6_3=$RDI_DATADIR/xsim/ip/high_speed_selectio_wiz_v3_6_3 +xtlm=$RDI_DATADIR/xsim/ip/xtlm +v_uhdsdi_vidgen_v1_0_1=$RDI_DATADIR/xsim/ip/v_uhdsdi_vidgen_v1_0_1 +xdfe_fft_v1_0_4=$RDI_DATADIR/xsim/ip/xdfe_fft_v1_0_4 +axis_ila_txns_cntr_v1_0_0=$RDI_DATADIR/xsim/ip/axis_ila_txns_cntr_v1_0_0 +v_warp_filter_v1_1_0=$RDI_DATADIR/xsim/ip/v_warp_filter_v1_1_0 +c_gate_bit_v12_0_6=$RDI_DATADIR/xsim/ip/c_gate_bit_v12_0_6 +axi_fifo_mm_s_v4_2_8=$RDI_DATADIR/xsim/ip/axi_fifo_mm_s_v4_2_8 +util_idelay_ctrl_v1_0_2=$RDI_DATADIR/xsim/ip/util_idelay_ctrl_v1_0_2 +usxgmii_v1_2_7=$RDI_DATADIR/xsim/ip/usxgmii_v1_2_7 +blk_mem_gen_v8_4_5=$RDI_DATADIR/xsim/ip/blk_mem_gen_v8_4_5 +ibert_lib_v1_0_7=$RDI_DATADIR/xsim/ip/ibert_lib_v1_0_7 +axi_traffic_gen_v3_0_12=$RDI_DATADIR/xsim/ip/axi_traffic_gen_v3_0_12 +dfx_decoupler_v1_0_4=$RDI_DATADIR/xsim/ip/dfx_decoupler_v1_0_4 +util_reduced_logic_v2_0_4=$RDI_DATADIR/xsim/ip/util_reduced_logic_v2_0_4 +emc_common_v3_0_5=$RDI_DATADIR/xsim/ip/emc_common_v3_0_5 +lut_buffer_v2_0_0=$RDI_DATADIR/xsim/ip/lut_buffer_v2_0_0 +rama_v1_1_12_lib=$RDI_DATADIR/xsim/ip/rama_v1_1_12_lib +hdcp22_cipher_v1_0_3=$RDI_DATADIR/xsim/ip/hdcp22_cipher_v1_0_3 +xbip_bram18k_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_bram18k_v3_0_6 +xbip_dsp48_mult_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_dsp48_mult_v3_0_6 +ieee802d3_400g_rs_fec_v2_0_7=$RDI_DATADIR/xsim/ip/ieee802d3_400g_rs_fec_v2_0_7 +lib_pkg_v1_0_2=$RDI_DATADIR/xsim/ip/lib_pkg_v1_0_2 +v_hdmi_phy1_v1_0_6=$RDI_DATADIR/xsim/ip/v_hdmi_phy1_v1_0_6 +axis_data_fifo_v2_0_8=$RDI_DATADIR/xsim/ip/axis_data_fifo_v2_0_8 +ai_pl_trig=$RDI_DATADIR/xsim/ip/ai_pl_trig +picxo=$RDI_DATADIR/xsim/ip/picxo +axi_intc_v4_1=$RDI_DATADIR/xsim/ip/axi_intc_v4_1 +xbip_dsp48_acc_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_dsp48_acc_v3_0_6 +v_hdmi_tx1_v1_0_3=$RDI_DATADIR/xsim/ip/v_hdmi_tx1_v1_0_3 +axis_dwidth_converter_sc_v1_1=$RDI_DATADIR/xsim/ip/axis_dwidth_converter_sc_v1_1 +axi_sideband_util_v1_0_10=$RDI_DATADIR/xsim/ip/axi_sideband_util_v1_0_10 +v_demosaic_v1_1_5=$RDI_DATADIR/xsim/ip/v_demosaic_v1_1_5 +lib_cdc_v1_0_2=$RDI_DATADIR/xsim/ip/lib_cdc_v1_0_2 +cmac_v2_6_7=$RDI_DATADIR/xsim/ip/cmac_v2_6_7 +fifo_generator_v13_2_7=$RDI_DATADIR/xsim/ip/fifo_generator_v13_2_7 +pc_cfr_v7_0_1=$RDI_DATADIR/xsim/ip/pc_cfr_v7_0_1 +gigantic_mux=$RDI_DATADIR/xsim/ip/gigantic_mux +video_frame_crc_v1_0_4=$RDI_DATADIR/xsim/ip/video_frame_crc_v1_0_4 +axi_usb2_device_v5_0_27=$RDI_DATADIR/xsim/ip/axi_usb2_device_v5_0_27 +shell_utils_addr_remap_v1_0_5=$RDI_DATADIR/xsim/ip/shell_utils_addr_remap_v1_0_5 +xbip_multadd_v3_0_17=$RDI_DATADIR/xsim/ip/xbip_multadd_v3_0_17 +axi_stream_monitor_v1_1_0=$RDI_DATADIR/xsim/ip/axi_stream_monitor_v1_1_0 +axi_tlm_ext_v1_0=$RDI_DATADIR/xsim/ip/axi_tlm_ext_v1_0 +axi_mcdma_v1_1_7=$RDI_DATADIR/xsim/ip/axi_mcdma_v1_1_7 +xtlm_trace_model_v1_0=$RDI_DATADIR/xsim/ip/xtlm_trace_model_v1_0 +pc_cfr_v6_4_2=$RDI_DATADIR/xsim/ip/pc_cfr_v6_4_2 +lmb_bram_if_cntlr_v4_0=$RDI_DATADIR/xsim/ip/lmb_bram_if_cntlr_v4_0 +i2s_transmitter_v1_0_5=$RDI_DATADIR/xsim/ip/i2s_transmitter_v1_0_5 +xsdbs_v1_0_2=$RDI_DATADIR/xsim/ip/xsdbs_v1_0_2 +xbip_pipe_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_pipe_v3_0_6 +noc_nps_v1_0_0=$RDI_DATADIR/xsim/ip/noc_nps_v1_0_0 +c_mux_bus_v12_0_6=$RDI_DATADIR/xsim/ip/c_mux_bus_v12_0_6 +processing_system7_v5_5_6=$RDI_DATADIR/xsim/ip/processing_system7_v5_5_6 +rld3_pl_v1_0_9=$RDI_DATADIR/xsim/ip/rld3_pl_v1_0_9 +versal_cips_ps_vip_v1_0_4=$RDI_DATADIR/xsim/ip/versal_cips_ps_vip_v1_0_4 +multi_channel_25g_rs_fec_v1_0_18=$RDI_DATADIR/xsim/ip/multi_channel_25g_rs_fec_v1_0_18 +v_letterbox_v1_1_5=$RDI_DATADIR/xsim/ip/v_letterbox_v1_1_5 +axis_interconnect_v1_1_20=$RDI_DATADIR/xsim/ip/axis_interconnect_v1_1_20 +axi_uart16550_v2_0_28=$RDI_DATADIR/xsim/ip/axi_uart16550_v2_0_28 +roe_framer_v3_0_3=$RDI_DATADIR/xsim/ip/roe_framer_v3_0_3 +ddr4_pl_v1_0_8=$RDI_DATADIR/xsim/ip/ddr4_pl_v1_0_8 +sim_rst_gen_v1_0_2=$RDI_DATADIR/xsim/ip/sim_rst_gen_v1_0_2 +i2s_receiver_v1_0_5=$RDI_DATADIR/xsim/ip/i2s_receiver_v1_0_5 +axi_crossbar_v2_1_27=$RDI_DATADIR/xsim/ip/axi_crossbar_v2_1_27 +axis_ila_ct_v1_0_0=$RDI_DATADIR/xsim/ip/axis_ila_ct_v1_0_0 +compact_gt_v1_0_12=$RDI_DATADIR/xsim/ip/compact_gt_v1_0_12 +v_mix_v5_2_3=$RDI_DATADIR/xsim/ip/v_mix_v5_2_3 +div_gen_v5_1_19=$RDI_DATADIR/xsim/ip/div_gen_v5_1_19 +interrupt_control_v3_1_4=$RDI_DATADIR/xsim/ip/interrupt_control_v3_1_4 +zynq_ultra_ps_e_v3_4_0=$RDI_DATADIR/xsim/ip/zynq_ultra_ps_e_v3_4_0 +hdcp_v1_0_3=$RDI_DATADIR/xsim/ip/hdcp_v1_0_3 +pcie_jtag_v1_0_0=$RDI_DATADIR/xsim/ip/pcie_jtag_v1_0_0 +mipi_csi2_tx_ctrl_v1_0_4=$RDI_DATADIR/xsim/ip/mipi_csi2_tx_ctrl_v1_0_4 +axi_mmu_v2_1_24=$RDI_DATADIR/xsim/ip/axi_mmu_v2_1_24 +can_v5_0_29=$RDI_DATADIR/xsim/ip/can_v5_0_29 +v_tpg_v8_2_1=$RDI_DATADIR/xsim/ip/v_tpg_v8_2_1 +sim_qdma_cpp_v1_0=$RDI_DATADIR/xsim/ip/sim_qdma_cpp_v1_0 +sim_xdma_sc_v1=$RDI_DATADIR/xsim/ip/sim_xdma_sc_v1 +v_csc_v1_1_5=$RDI_DATADIR/xsim/ip/v_csc_v1_1_5 +v_smpte_sdi_v3_0_9=$RDI_DATADIR/xsim/ip/v_smpte_sdi_v3_0_9 +v_warp_init_v1_0_2=$RDI_DATADIR/xsim/ip/v_warp_init_v1_0_2 +axis_register_slice_v1_1_26=$RDI_DATADIR/xsim/ip/axis_register_slice_v1_1_26 +c_addsub_v12_0_14=$RDI_DATADIR/xsim/ip/c_addsub_v12_0_14 +trace_hub_v1_1_0=$RDI_DATADIR/xsim/ip/trace_hub_v1_1_0 +axi_tg_sc_v1_0=$RDI_DATADIR/xsim/ip/axi_tg_sc_v1_0 +fast_adapter_v1_0_3=$RDI_DATADIR/xsim/ip/fast_adapter_v1_0_3 +system_cache_v5_0_8=$RDI_DATADIR/xsim/ip/system_cache_v5_0_8 +v_deinterlacer_v5_1_0=$RDI_DATADIR/xsim/ip/v_deinterlacer_v5_1_0 +ieee802d3_rs_fec_v2_0_15=$RDI_DATADIR/xsim/ip/ieee802d3_rs_fec_v2_0_15 +v_vid_sdi_tx_bridge_v2_0_0=$RDI_DATADIR/xsim/ip/v_vid_sdi_tx_bridge_v2_0_0 +perf_axi_tg_v1_0_8=$RDI_DATADIR/xsim/ip/perf_axi_tg_v1_0_8 +sim_ddr_v1_0=$RDI_DATADIR/xsim/ip/sim_ddr_v1_0 +mipi_csi2_rx_ctrl_v1_0_8=$RDI_DATADIR/xsim/ip/mipi_csi2_rx_ctrl_v1_0_8 +ilknf_v1_1_0=$RDI_DATADIR/xsim/ip/ilknf_v1_1_0 +rs_decoder_v9_0_18=$RDI_DATADIR/xsim/ip/rs_decoder_v9_0_18 +axi_chip2chip_v5_0_15=$RDI_DATADIR/xsim/ip/axi_chip2chip_v5_0_15 +qdma_v4_0_11=$RDI_DATADIR/xsim/ip/qdma_v4_0_11 +ldpc_v2_0_10=$RDI_DATADIR/xsim/ip/ldpc_v2_0_10 +axi_c2c_v1_0_3=$RDI_DATADIR/xsim/ip/axi_c2c_v1_0_3 +av_pat_gen_v1_0_1=$RDI_DATADIR/xsim/ip/av_pat_gen_v1_0_1 +pcie_axi4lite_tap_v1_0_1=$RDI_DATADIR/xsim/ip/pcie_axi4lite_tap_v1_0_1 +xxv_ethernet_v4_1_0=$RDI_DATADIR/xsim/ip/xxv_ethernet_v4_1_0 +vid_edid_v1_0_0=$RDI_DATADIR/xsim/ip/vid_edid_v1_0_0 +rs_toolbox_v9_0_9=$RDI_DATADIR/xsim/ip/rs_toolbox_v9_0_9 +axis_data_fifo_v1_1_27=$RDI_DATADIR/xsim/ip/axis_data_fifo_v1_1_27 +audio_tpg_v1_0_0=$RDI_DATADIR/xsim/ip/audio_tpg_v1_0_0 +c_counter_binary_v12_0_15=$RDI_DATADIR/xsim/ip/c_counter_binary_v12_0_15 +axi_dma_v7_1_27=$RDI_DATADIR/xsim/ip/axi_dma_v7_1_27 +emu_perf_common_v1_0=$RDI_DATADIR/xsim/ip/emu_perf_common_v1_0 +axis_cap_ctrl_v1_0_0=$RDI_DATADIR/xsim/ip/axis_cap_ctrl_v1_0_0 +dp_videoaxi4s_bridge_v1_0_1=$RDI_DATADIR/xsim/ip/dp_videoaxi4s_bridge_v1_0_1 +axi_gpio_v2_0_28=$RDI_DATADIR/xsim/ip/axi_gpio_v2_0_28 +v_tc_v6_1_13=$RDI_DATADIR/xsim/ip/v_tc_v6_1_13 +axi_emc_v3_0_26=$RDI_DATADIR/xsim/ip/axi_emc_v3_0_26 +dfx_axi_shutdown_manager_v1_0_0=$RDI_DATADIR/xsim/ip/dfx_axi_shutdown_manager_v1_0_0 +axi_pmon_v1_0_0=$RDI_DATADIR/xsim/ip/axi_pmon_v1_0_0 +microblaze_mcs_v2_3_6=$RDI_DATADIR/xsim/ip/microblaze_mcs_v2_3_6 +mdm_v3_2_23=$RDI_DATADIR/xsim/ip/mdm_v3_2_23 +mipi_dsi_tx_ctrl_v1_0_7=$RDI_DATADIR/xsim/ip/mipi_dsi_tx_ctrl_v1_0_7 +noc_nmu_phydir_v1_0_0=$RDI_DATADIR/xsim/ip/noc_nmu_phydir_v1_0_0 +v_hdmi_rx_v3_0_0=$RDI_DATADIR/xsim/ip/v_hdmi_rx_v3_0_0 +axi_vfifo_ctrl_v2_0_28=$RDI_DATADIR/xsim/ip/axi_vfifo_ctrl_v2_0_28 +stm_v1_0_0=$RDI_DATADIR/xsim/ip/stm_v1_0_0 +axis_dbg_sync_v1_0_0=$RDI_DATADIR/xsim/ip/axis_dbg_sync_v1_0_0 +cic_compiler_v4_0_16=$RDI_DATADIR/xsim/ip/cic_compiler_v4_0_16 +mailbox_v2_1_15=$RDI_DATADIR/xsim/ip/mailbox_v2_1_15 +stm_v1_0=$RDI_DATADIR/xsim/ip/stm_v1_0 +ieee802d3_200g_rs_fec_v2_0_5=$RDI_DATADIR/xsim/ip/ieee802d3_200g_rs_fec_v2_0_5 +xdfe_cc_filter_v1_0_4=$RDI_DATADIR/xsim/ip/xdfe_cc_filter_v1_0_4 +advanced_io_wizard_v1_0_7=$RDI_DATADIR/xsim/ip/advanced_io_wizard_v1_0_7 +nvmeha_v1_0_7=$RDI_DATADIR/xsim/ip/nvmeha_v1_0_7 +axi_remapper_rx_v1_0_0=$RDI_DATADIR/xsim/ip/axi_remapper_rx_v1_0_0 +smartconnect_v1_0=$RDI_DATADIR/xsim/ip/smartconnect_v1_0 +mrmac_v1_6_0=$RDI_DATADIR/xsim/ip/mrmac_v1_6_0 +jesd204c_v4_2_8=$RDI_DATADIR/xsim/ip/jesd204c_v4_2_8 +axi_firewall_v1_1_5=$RDI_DATADIR/xsim/ip/axi_firewall_v1_1_5 +an_lt_v1_0_6=$RDI_DATADIR/xsim/ip/an_lt_v1_0_6 +lmb_v10_v3_0_12=$RDI_DATADIR/xsim/ip/lmb_v10_v3_0_12 +ats_switch_v1_0_5=$RDI_DATADIR/xsim/ip/ats_switch_v1_0_5 +switch_core_top_v1_0_11=$RDI_DATADIR/xsim/ip/switch_core_top_v1_0_11 +axi_tft_v2_0_25=$RDI_DATADIR/xsim/ip/axi_tft_v2_0_25 +xdfe_cc_mixer_v1_0_4=$RDI_DATADIR/xsim/ip/xdfe_cc_mixer_v1_0_4 +hw_trace=$RDI_DATADIR/xsim/ip/hw_trace +floating_point_v7_0_20=$RDI_DATADIR/xsim/ip/floating_point_v7_0_20 +microblaze_v11_0_9=$RDI_DATADIR/xsim/ip/microblaze_v11_0_9 +tcc_decoder_3gpplte_v3_0_6=$RDI_DATADIR/xsim/ip/tcc_decoder_3gpplte_v3_0_6 +v_hcresampler_v1_1_5=$RDI_DATADIR/xsim/ip/v_hcresampler_v1_1_5 +interlaken_v2_4_11=$RDI_DATADIR/xsim/ip/interlaken_v2_4_11 +sim_ipc_multi_intf_v1_0=$RDI_DATADIR/xsim/ip/sim_ipc_multi_intf_v1_0 +xbip_accum_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_accum_v3_0_6 +fir_compiler_v7_2_18=$RDI_DATADIR/xsim/ip/fir_compiler_v7_2_18 +spdif_v2_0_26=$RDI_DATADIR/xsim/ip/spdif_v2_0_26 +hdcp22_cipher_dp_v1_0_0=$RDI_DATADIR/xsim/ip/hdcp22_cipher_dp_v1_0_0 +v_vid_gt_bridge_v1_0_5=$RDI_DATADIR/xsim/ip/v_vid_gt_bridge_v1_0_5 +noc_npp_rptr_v1_0_0=$RDI_DATADIR/xsim/ip/noc_npp_rptr_v1_0_0 +axi_ahblite_bridge_v3_0_23=$RDI_DATADIR/xsim/ip/axi_ahblite_bridge_v3_0_23 +v_multi_scaler_v1_2_3=$RDI_DATADIR/xsim/ip/v_multi_scaler_v1_2_3 +axis_protocol_checker_v2_0_10=$RDI_DATADIR/xsim/ip/axis_protocol_checker_v2_0_10 +mammoth_transcode_v1_0_0=$RDI_DATADIR/xsim/ip/mammoth_transcode_v1_0_0 +ten_gig_eth_mac_v15_1_10=$RDI_DATADIR/xsim/ip/ten_gig_eth_mac_v15_1_10 +ptp_1588_timer_syncer_v1_0_2=$RDI_DATADIR/xsim/ip/ptp_1588_timer_syncer_v1_0_2 +vitis_deadlock_detector_v1_0_1=$RDI_DATADIR/xsim/ip/vitis_deadlock_detector_v1_0_1 +lib_fifo_v1_0_16=$RDI_DATADIR/xsim/ip/lib_fifo_v1_0_16 +util_vector_logic_v2_0_2=$RDI_DATADIR/xsim/ip/util_vector_logic_v2_0_2 +floating_point_v7_1_14=$RDI_DATADIR/xsim/ip/floating_point_v7_1_14 +c_reg_fd_v12_0_6=$RDI_DATADIR/xsim/ip/c_reg_fd_v12_0_6 +dds_compiler_v6_0_22=$RDI_DATADIR/xsim/ip/dds_compiler_v6_0_22 +srio_gen2_v4_1_14=$RDI_DATADIR/xsim/ip/srio_gen2_v4_1_14 +axis_dbg_stub_v1_0_0=$RDI_DATADIR/xsim/ip/axis_dbg_stub_v1_0_0 +vfb_v1_0_20=$RDI_DATADIR/xsim/ip/vfb_v1_0_20 +v_hdmi_tx_v3_0_0=$RDI_DATADIR/xsim/ip/v_hdmi_tx_v3_0_0 +noc_nsu_v1_0_0=$RDI_DATADIR/xsim/ip/noc_nsu_v1_0_0 +xsdbm_v3_0_0=$RDI_DATADIR/xsim/ip/xsdbm_v3_0_0 +advanced_io_wizard_phy_v1_0_0=$RDI_DATADIR/xsim/ip/advanced_io_wizard_phy_v1_0_0 +xpm=$RDI_DATADIR/xsim/ip/xpm +hdmi_acr_ctrl_v1_0_0=$RDI_DATADIR/xsim/ip/hdmi_acr_ctrl_v1_0_0 +quadsgmii_v3_5_8=$RDI_DATADIR/xsim/ip/quadsgmii_v3_5_8 +xbip_dsp48_multacc_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_dsp48_multacc_v3_0_6 +axi_vip_v1_1_12=$RDI_DATADIR/xsim/ip/axi_vip_v1_1_12 +av_pat_gen_v2_0_0=$RDI_DATADIR/xsim/ip/av_pat_gen_v2_0_0 +axi_protocol_checker_v2_0_12=$RDI_DATADIR/xsim/ip/axi_protocol_checker_v2_0_12 +sim_xdma_cpp_v1=$RDI_DATADIR/xsim/ip/sim_xdma_cpp_v1 +axi4svideo_bridge_v1_0_14=$RDI_DATADIR/xsim/ip/axi4svideo_bridge_v1_0_14 +tsn_temac_v1_0_7=$RDI_DATADIR/xsim/ip/tsn_temac_v1_0_7 +dfx_bitstream_monitor_v1_0_1=$RDI_DATADIR/xsim/ip/dfx_bitstream_monitor_v1_0_1 +axi_bram_ctrl_v4_1_6=$RDI_DATADIR/xsim/ip/axi_bram_ctrl_v4_1_6 +jtag_axi=$RDI_DATADIR/xsim/ip/jtag_axi +dprx_fec_8b10b_v1_0_1=$RDI_DATADIR/xsim/ip/dprx_fec_8b10b_v1_0_1 +ltlib_v1_0_0=$RDI_DATADIR/xsim/ip/ltlib_v1_0_0 +ll_compress_v2_1_0=$RDI_DATADIR/xsim/ip/ll_compress_v2_1_0 +ieee802d3_25g_rs_fec_v1_0_23=$RDI_DATADIR/xsim/ip/ieee802d3_25g_rs_fec_v1_0_23 +hbm2e_pl_v1_0_0=$RDI_DATADIR/xsim/ip/hbm2e_pl_v1_0_0 +flexo_100g_rs_fec_v1_0_21=$RDI_DATADIR/xsim/ip/flexo_100g_rs_fec_v1_0_21 +cpm5_v1_0_7=$RDI_DATADIR/xsim/ip/cpm5_v1_0_7 +lte_fft_v2_0_22=$RDI_DATADIR/xsim/ip/lte_fft_v2_0_22 +v_frmbuf_rd_v2_4_0=$RDI_DATADIR/xsim/ip/v_frmbuf_rd_v2_4_0 +xfft_v9_1_8=$RDI_DATADIR/xsim/ip/xfft_v9_1_8 +axi_lite_ipif_v3_0=$RDI_DATADIR/xsim/ip/axi_lite_ipif_v3_0 +lib_bmg_v1_0_14=$RDI_DATADIR/xsim/ip/lib_bmg_v1_0_14 +axi_quad_spi_v3_2_25=$RDI_DATADIR/xsim/ip/axi_quad_spi_v3_2_25 +pcie_qdma_mailbox_v1_0_0=$RDI_DATADIR/xsim/ip/pcie_qdma_mailbox_v1_0_0 +cpri_v8_11_12=$RDI_DATADIR/xsim/ip/cpri_v8_11_12 +axi_apb_bridge_v3_0_17=$RDI_DATADIR/xsim/ip/axi_apb_bridge_v3_0_17 +tmr_inject_v1_0_4=$RDI_DATADIR/xsim/ip/tmr_inject_v1_0_4 +jesd204_v7_2_15=$RDI_DATADIR/xsim/ip/jesd204_v7_2_15 +v_hscaler_v1_1_5=$RDI_DATADIR/xsim/ip/v_hscaler_v1_1_5 +axis_switch_v1_1_26=$RDI_DATADIR/xsim/ip/axis_switch_v1_1_26 +accelerator_monitor_v1_1_0=$RDI_DATADIR/xsim/ip/accelerator_monitor_v1_1_0 +axis_infrastructure_v1_1_0=$RDI_DATADIR/xsim/ip/axis_infrastructure_v1_1_0 +noc_nidb_v1_0_0=$RDI_DATADIR/xsim/ip/noc_nidb_v1_0_0 +tri_mode_ethernet_mac_v9_0_22=$RDI_DATADIR/xsim/ip/tri_mode_ethernet_mac_v9_0_22 +generic_baseblocks_v2_1_0=$RDI_DATADIR/xsim/ip/generic_baseblocks_v2_1_0 +v_warp_init_v1_1_0=$RDI_DATADIR/xsim/ip/v_warp_init_v1_1_0 +rs_encoder_v9_0_17=$RDI_DATADIR/xsim/ip/rs_encoder_v9_0_17 +v_dual_splitter_v1_0_9=$RDI_DATADIR/xsim/ip/v_dual_splitter_v1_0_9 +xbip_dsp48_addsub_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_dsp48_addsub_v3_0_6 +nvme_tc_v3_0_1=$RDI_DATADIR/xsim/ip/nvme_tc_v3_0_1 +v_frmbuf_wr_v2_2_5=$RDI_DATADIR/xsim/ip/v_frmbuf_wr_v2_2_5 +sd_fec_v1_1_9=$RDI_DATADIR/xsim/ip/sd_fec_v1_1_9 +cmac_usplus_v3_1_9=$RDI_DATADIR/xsim/ip/cmac_usplus_v3_1_9 +ll_compress_v2_0_1=$RDI_DATADIR/xsim/ip/ll_compress_v2_0_1 +g709_rs_encoder_v2_2_8=$RDI_DATADIR/xsim/ip/g709_rs_encoder_v2_2_8 +processing_system7_vip_v1_0_14=$RDI_DATADIR/xsim/ip/processing_system7_vip_v1_0_14 +c_mux_bit_v12_0_6=$RDI_DATADIR/xsim/ip/c_mux_bit_v12_0_6 +axi_amm_bridge_v1_0_16=$RDI_DATADIR/xsim/ip/axi_amm_bridge_v1_0_16 +lib_srl_fifo_v1_0_2=$RDI_DATADIR/xsim/ip/lib_srl_fifo_v1_0_2 +audio_formatter_v1_0_8=$RDI_DATADIR/xsim/ip/audio_formatter_v1_0_8 +xbip_counter_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_counter_v3_0_6 +bs_switch_v1_0_0=$RDI_DATADIR/xsim/ip/bs_switch_v1_0_0 +audio_clock_recovery_unit_v1_0_2=$RDI_DATADIR/xsim/ip/audio_clock_recovery_unit_v1_0_2 +videoaxi4s_bridge_v1_0_5=$RDI_DATADIR/xsim/ip/videoaxi4s_bridge_v1_0_5 +lmb_v10_v3_0=$RDI_DATADIR/xsim/ip/lmb_v10_v3_0 +pc_cfr_v7_1_0=$RDI_DATADIR/xsim/ip/pc_cfr_v7_1_0 +v_vscaler_v1_1_5=$RDI_DATADIR/xsim/ip/v_vscaler_v1_1_5 +rst_vip_v1_0_4=$RDI_DATADIR/xsim/ip/rst_vip_v1_0_4 +v_frmbuf_rd_v2_3_1=$RDI_DATADIR/xsim/ip/v_frmbuf_rd_v2_3_1 +v_axi4s_vid_out_v4_0_14=$RDI_DATADIR/xsim/ip/v_axi4s_vid_out_v4_0_14 +v_tpg_v8_0_9=$RDI_DATADIR/xsim/ip/v_tpg_v8_0_9 +v_frmbuf_wr_v2_4_0=$RDI_DATADIR/xsim/ip/v_frmbuf_wr_v2_4_0 +fec_5g_common_v1_1_1=$RDI_DATADIR/xsim/ip/fec_5g_common_v1_1_1 +fifo_generator_v13_1_4=$RDI_DATADIR/xsim/ip/fifo_generator_v13_1_4 +axi_protocol_converter_v2_1_26=$RDI_DATADIR/xsim/ip/axi_protocol_converter_v2_1_26 +hdcp22_rng_v1_0_1=$RDI_DATADIR/xsim/ip/hdcp22_rng_v1_0_1 +axis_mem_v1_0_0=$RDI_DATADIR/xsim/ip/axis_mem_v1_0_0 +ecc_v2_0_13=$RDI_DATADIR/xsim/ip/ecc_v2_0_13 +axis_mu_v1_0_0=$RDI_DATADIR/xsim/ip/axis_mu_v1_0_0 +mdm_v3_2=$RDI_DATADIR/xsim/ip/mdm_v3_2 +xbip_addsub_v3_0_6=$RDI_DATADIR/xsim/ip/xbip_addsub_v3_0_6 +xdfe_nlf_v1_0_0=$RDI_DATADIR/xsim/ip/xdfe_nlf_v1_0_0 +soft_ecc_proxy_v1_0_1=$RDI_DATADIR/xsim/ip/soft_ecc_proxy_v1_0_1 +axi_pcie_v2_9_7=$RDI_DATADIR/xsim/ip/axi_pcie_v2_9_7 +c_shift_ram_v12_0_14=$RDI_DATADIR/xsim/ip/c_shift_ram_v12_0_14 +xdfe_nr_prach_v1_0_4=$RDI_DATADIR/xsim/ip/xdfe_nr_prach_v1_0_4 +axi_clock_converter_v2_1_25=$RDI_DATADIR/xsim/ip/axi_clock_converter_v2_1_25 +gtwizard_ultrascale_v1_7_13=$RDI_DATADIR/xsim/ip/gtwizard_ultrascale_v1_7_13 +common_rpc_v1=$RDI_DATADIR/xsim/ip/common_rpc_v1 +displayport_v8_1_5=$RDI_DATADIR/xsim/ip/displayport_v8_1_5 +blk_mem_gen_v8_3_6=$RDI_DATADIR/xsim/ip/blk_mem_gen_v8_3_6 +ll_compress_v1_0_0=$RDI_DATADIR/xsim/ip/ll_compress_v1_0_0 +displayport_v9_0_5=$RDI_DATADIR/xsim/ip/displayport_v9_0_5 +sim_cpu_v1_0=$RDI_DATADIR/xsim/ip/sim_cpu_v1_0 +dist_mem_gen_v8_0_13=$RDI_DATADIR/xsim/ip/dist_mem_gen_v8_0_13 +axi_perf_mon_v5_0_28=$RDI_DATADIR/xsim/ip/axi_perf_mon_v5_0_28 +uhdsdi_gt_v2_0_8=$RDI_DATADIR/xsim/ip/uhdsdi_gt_v2_0_8 +oddr_v1_0_2=$RDI_DATADIR/xsim/ip/oddr_v1_0_2 +sem_ultra_v3_1_23=$RDI_DATADIR/xsim/ip/sem_ultra_v3_1_23 +v_mix_v5_1_5=$RDI_DATADIR/xsim/ip/v_mix_v5_1_5 +ten_gig_eth_pcs_pma_v6_0_22=$RDI_DATADIR/xsim/ip/ten_gig_eth_pcs_pma_v6_0_22 +xilinx_vip=$RDI_DATADIR/xsim/ip/xilinx_vip +gig_ethernet_pcs_pma_v16_2_8=$RDI_DATADIR/xsim/ip/gig_ethernet_pcs_pma_v16_2_8 +ieee802d3_clause74_fec_v1_0_13=$RDI_DATADIR/xsim/ip/ieee802d3_clause74_fec_v1_0_13 +noc_ncrb_v1_0_0=$RDI_DATADIR/xsim/ip/noc_ncrb_v1_0_0 +v_frmbuf_rd_v2_2_5=$RDI_DATADIR/xsim/ip/v_frmbuf_rd_v2_2_5 +l_ethernet_v3_3_0=$RDI_DATADIR/xsim/ip/l_ethernet_v3_3_0 +rld3_pl_phy_v1_0_0=$RDI_DATADIR/xsim/ip/rld3_pl_phy_v1_0_0 +xfft_v7_2_13=$RDI_DATADIR/xsim/ip/xfft_v7_2_13 +axis_ila_intf_v1_0_0=$RDI_DATADIR/xsim/ip/axis_ila_intf_v1_0_0 +v_frmbuf_wr_v2_3_1=$RDI_DATADIR/xsim/ip/v_frmbuf_wr_v2_3_1 +axi_cdma_v4_1_26=$RDI_DATADIR/xsim/ip/axi_cdma_v4_1_26 +emb_fifo_gen_v1_0_2=$RDI_DATADIR/xsim/ip/emb_fifo_gen_v1_0_2 +cmpy_v6_0_21=$RDI_DATADIR/xsim/ip/cmpy_v6_0_21 +cam_v2_3_0=$RDI_DATADIR/xsim/ip/cam_v2_3_0 +g975_efec_i4_v1_0_18=$RDI_DATADIR/xsim/ip/g975_efec_i4_v1_0_18 +dbg_intf=$RDI_DATADIR/xsim/ip/dbg_intf +tmr_voter_v1_0_4=$RDI_DATADIR/xsim/ip/tmr_voter_v1_0_4 +mpegtsmux_v1_1_4=$RDI_DATADIR/xsim/ip/mpegtsmux_v1_1_4 +xlconstant_v1_1_7=$RDI_DATADIR/xsim/ip/xlconstant_v1_1_7 +lte_fft_v2_1_6=$RDI_DATADIR/xsim/ip/lte_fft_v2_1_6 +axi_intc_v4_1_17=$RDI_DATADIR/xsim/ip/axi_intc_v4_1_17 +ernic_v3_1_2=$RDI_DATADIR/xsim/ip/ernic_v3_1_2 +c_compare_v12_0_6=$RDI_DATADIR/xsim/ip/c_compare_v12_0_6 +tcc_encoder_3gpp_v5_0_18=$RDI_DATADIR/xsim/ip/tcc_encoder_3gpp_v5_0_18 +axi_pcie3_v3_0_22=$RDI_DATADIR/xsim/ip/axi_pcie3_v3_0_22 +g709_rs_decoder_v2_2_10=$RDI_DATADIR/xsim/ip/g709_rs_decoder_v2_2_10 +axis_combiner_v1_1_24=$RDI_DATADIR/xsim/ip/axis_combiner_v1_1_24 +clk_vip_v1_0_2=$RDI_DATADIR/xsim/ip/clk_vip_v1_0_2 +aie_xtlm_v1_0_0=$RDI_DATADIR/xsim/ip/aie_xtlm_v1_0_0 +sim_qdma_sc_v1_0=$RDI_DATADIR/xsim/ip/sim_qdma_sc_v1_0 +v_uhdsdi_audio_v2_0_6=$RDI_DATADIR/xsim/ip/v_uhdsdi_audio_v2_0_6 +remote_port_c_v4=$RDI_DATADIR/xsim/ip/remote_port_c_v4 +polar_v1_0_10=$RDI_DATADIR/xsim/ip/polar_v1_0_10 +v_hdmi_rx1_v1_0_3=$RDI_DATADIR/xsim/ip/v_hdmi_rx1_v1_0_3 +v_gamma_lut_v1_1_5=$RDI_DATADIR/xsim/ip/v_gamma_lut_v1_1_5 +sid_v8_0_17=$RDI_DATADIR/xsim/ip/sid_v8_0_17 +axis_subset_converter_v1_1_26=$RDI_DATADIR/xsim/ip/axis_subset_converter_v1_1_26 +axi_bram_ctrl_v4_0_14=$RDI_DATADIR/xsim/ip/axi_bram_ctrl_v4_0_14 +oran_radio_if_v2_2_0=$RDI_DATADIR/xsim/ip/oran_radio_if_v2_2_0 +xtlm_ipc_v1_0=$RDI_DATADIR/xsim/ip/xtlm_ipc_v1_0 +xbip_utils_v3_0_10=$RDI_DATADIR/xsim/ip/xbip_utils_v3_0_10 +axi_hbicap_v1_0_4=$RDI_DATADIR/xsim/ip/axi_hbicap_v1_0_4 +sim_clk_gen_v1_0_3=$RDI_DATADIR/xsim/ip/sim_clk_gen_v1_0_3 +sem_v4_1_13=$RDI_DATADIR/xsim/ip/sem_v4_1_13 +versal_cips_v3_2_0=$RDI_DATADIR/xsim/ip/versal_cips_v3_2_0 +mipi_dphy_v4_3_4=$RDI_DATADIR/xsim/ip/mipi_dphy_v4_3_4 +mult_gen_v12_0_18=$RDI_DATADIR/xsim/ip/mult_gen_v12_0_18 +xlslice_v1_0_2=$RDI_DATADIR/xsim/ip/xlslice_v1_0_2 +iomodule_v3_1_8=$RDI_DATADIR/xsim/ip/iomodule_v3_1_8 +util_ff_v1_0_0=$RDI_DATADIR/xsim/ip/util_ff_v1_0_0 +mem_tg_v1_0_8=$RDI_DATADIR/xsim/ip/mem_tg_v1_0_8 +ddr4_pl_phy_v1_0_0=$RDI_DATADIR/xsim/ip/ddr4_pl_phy_v1_0_0 +sim_trig_v1_0_7=$RDI_DATADIR/xsim/ip/sim_trig_v1_0_7 +tmr_comparator_v1_0_5=$RDI_DATADIR/xsim/ip/tmr_comparator_v1_0_5 +pcie_dma_versal_v2_0_9=$RDI_DATADIR/xsim/ip/pcie_dma_versal_v2_0_9 +axi_ethernetlite_v3_0_25=$RDI_DATADIR/xsim/ip/axi_ethernetlite_v3_0_25 +axi_memory_init_v1_0_7=$RDI_DATADIR/xsim/ip/axi_memory_init_v1_0_7 +v_sdi_rx_vid_bridge_v2_0_0=$RDI_DATADIR/xsim/ip/v_sdi_rx_vid_bridge_v2_0_0 +dft_v4_2_3=$RDI_DATADIR/xsim/ip/dft_v4_2_3 +qdriv_pl_phy_v1_0_0=$RDI_DATADIR/xsim/ip/qdriv_pl_phy_v1_0_0 diff --git a/vivado_custom_ip/component.xml b/vivado_custom_ip/component.xml index 77614c3..787028c 100644 --- a/vivado_custom_ip/component.xml +++ b/vivado_custom_ip/component.xml @@ -561,7 +561,7 @@ viewChecksum - 1dea7b87 + 407441e6 @@ -577,7 +577,7 @@ viewChecksum - 1dea7b87 + 407441e6 @@ -591,7 +591,7 @@ viewChecksum - ce7b9cf6 + 5c3337af @@ -1596,7 +1596,7 @@ - true + false @@ -1668,11 +1668,6 @@ Wb Error 0 - - SKIP_INTERNAL_TEST - Skip Internal Test - false - ECC_ENABLE Ecc Enable @@ -1681,7 +1676,7 @@ SELF_REFRESH Self-Refresh - 0 + "00" DIC @@ -1743,6 +1738,11 @@ Axi Data Width 128 + + BIST_MODE + Bist Mode + 0 + @@ -1751,6 +1751,12 @@ ACTIVE_HIGH ACTIVE_LOW + + choice_pairs_3f983004 + 0 + 1 + 2 + choice_pairs_933dc0fc 0 @@ -1820,7 +1826,7 @@ ../rtl/axi/ddr3_top_axi.v verilogSource - CHECKSUM_f4e2d855 + CHECKSUM_f9ca4d9d @@ -1883,7 +1889,7 @@ xgui/uberddr3_axi_v1_0.tcl tclSource - CHECKSUM_ce7b9cf6 + CHECKSUM_5c3337af XGUI_VERSION_2 @@ -1969,11 +1975,6 @@ Wb Error 0 - - SKIP_INTERNAL_TEST - Skip Internal Test - false - ECC_ENABLE ECC Enable @@ -2102,7 +2103,12 @@ SELF_REFRESH Self-Refresh - 0 + "00" + + + BIST_MODE + BIST Mode + 0 @@ -2137,8 +2143,8 @@ uberddr3_axi_v1_0 package_project https://github.com/AngeloJacobo/UberDDR3 - 11 - 2024-11-24T08:00:34Z + 12 + 2025-02-16T03:52:36Z @@ -2147,10 +2153,10 @@ 2022.1 - - - - + + + + diff --git a/vivado_custom_ip/xgui/uberddr3_axi_v1_0.tcl b/vivado_custom_ip/xgui/uberddr3_axi_v1_0.tcl index 4ec1d2e..c64d22a 100644 --- a/vivado_custom_ip/xgui/uberddr3_axi_v1_0.tcl +++ b/vivado_custom_ip/xgui/uberddr3_axi_v1_0.tcl @@ -23,8 +23,8 @@ proc init_gui { IPINST } { set_property tooltip {Type of ECC (0,1,2,3)} ${ECC_ENABLE} set SELF_REFRESH [ipgui::add_param $IPINST -name "SELF_REFRESH" -parent ${Page_0} -widget comboBox] set_property tooltip {Enable option for self-refresh} ${SELF_REFRESH} - set SKIP_INTERNAL_TEST [ipgui::add_param $IPINST -name "SKIP_INTERNAL_TEST" -parent ${Page_0}] - set_property tooltip {Check to skip built-in self-test (check this if UberDDR3 will be connected to Microblaze)} ${SKIP_INTERNAL_TEST} + set BIST_MODE [ipgui::add_param $IPINST -name "BIST_MODE" -parent ${Page_0} -widget comboBox] + set_property tooltip {Type of Built-In Self Test (BIST)} ${BIST_MODE} set ODELAY_SUPPORTED [ipgui::add_param $IPINST -name "ODELAY_SUPPORTED" -parent ${Page_0}] set_property tooltip {Check if FPGA supports ODELAYE2 primitive (e.g. FPGA with HP banks like Kintex-7)} ${ODELAY_SUPPORTED} set MICRON_SIM [ipgui::add_param $IPINST -name "MICRON_SIM" -parent ${Page_0}] @@ -187,6 +187,15 @@ proc validate_PARAM_VALUE.BA_BITS { PARAM_VALUE.BA_BITS } { return true } +proc update_PARAM_VALUE.BIST_MODE { PARAM_VALUE.BIST_MODE } { + # Procedure called to update BIST_MODE when any of the dependent parameters in the arguments change +} + +proc validate_PARAM_VALUE.BIST_MODE { PARAM_VALUE.BIST_MODE } { + # Procedure called to validate BIST_MODE + return true +} + proc update_PARAM_VALUE.BYTE_LANES { PARAM_VALUE.BYTE_LANES } { # Procedure called to update BYTE_LANES when any of the dependent parameters in the arguments change } @@ -295,15 +304,6 @@ proc validate_PARAM_VALUE.SELF_REFRESH { PARAM_VALUE.SELF_REFRESH } { return true } -proc update_PARAM_VALUE.SKIP_INTERNAL_TEST { PARAM_VALUE.SKIP_INTERNAL_TEST } { - # Procedure called to update SKIP_INTERNAL_TEST when any of the dependent parameters in the arguments change -} - -proc validate_PARAM_VALUE.SKIP_INTERNAL_TEST { PARAM_VALUE.SKIP_INTERNAL_TEST } { - # Procedure called to validate SKIP_INTERNAL_TEST - return true -} - proc update_PARAM_VALUE.WB2_ADDR_BITS { PARAM_VALUE.WB2_ADDR_BITS } { # Procedure called to update WB2_ADDR_BITS when any of the dependent parameters in the arguments change } @@ -406,11 +406,6 @@ proc update_MODELPARAM_VALUE.WB_ERROR { MODELPARAM_VALUE.WB_ERROR PARAM_VALUE.WB set_property value [get_property value ${PARAM_VALUE.WB_ERROR}] ${MODELPARAM_VALUE.WB_ERROR} } -proc update_MODELPARAM_VALUE.SKIP_INTERNAL_TEST { MODELPARAM_VALUE.SKIP_INTERNAL_TEST PARAM_VALUE.SKIP_INTERNAL_TEST } { - # Procedure called to set VHDL generic/Verilog parameter value(s) based on TCL parameter value - set_property value [get_property value ${PARAM_VALUE.SKIP_INTERNAL_TEST}] ${MODELPARAM_VALUE.SKIP_INTERNAL_TEST} -} - proc update_MODELPARAM_VALUE.ECC_ENABLE { MODELPARAM_VALUE.ECC_ENABLE PARAM_VALUE.ECC_ENABLE } { # Procedure called to set VHDL generic/Verilog parameter value(s) based on TCL parameter value set_property value [get_property value ${PARAM_VALUE.ECC_ENABLE}] ${MODELPARAM_VALUE.ECC_ENABLE} @@ -481,3 +476,8 @@ proc update_MODELPARAM_VALUE.AXI_DATA_WIDTH { MODELPARAM_VALUE.AXI_DATA_WIDTH PA set_property value [get_property value ${PARAM_VALUE.AXI_DATA_WIDTH}] ${MODELPARAM_VALUE.AXI_DATA_WIDTH} } +proc update_MODELPARAM_VALUE.BIST_MODE { MODELPARAM_VALUE.BIST_MODE PARAM_VALUE.BIST_MODE } { + # Procedure called to set VHDL generic/Verilog parameter value(s) based on TCL parameter value + set_property value [get_property value ${PARAM_VALUE.BIST_MODE}] ${MODELPARAM_VALUE.BIST_MODE} +} +